Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/LocalItemQuery.cs

20 lines
506 B
C#
Raw Normal View History

2015-03-03 13:48:47 -05:00

namespace MediaBrowser.Model.Sync
{
public class LocalItemQuery
{
public string ServerId { get; set; }
2015-03-24 21:14:24 -04:00
public string AlbumArtistId { get; set; }
2015-03-03 13:48:47 -05:00
public string AlbumId { get; set; }
public string SeriesId { get; set; }
public string Type { get; set; }
public string MediaType { get; set; }
public string[] ExcludeTypes { get; set; }
public LocalItemQuery()
{
ExcludeTypes = new string[] { };
}
}
}