jellyfin/MediaBrowser.Model/Sync/LocalItemQuery.cs
Luke Pulverenti 5878190cab updated nuget
2015-03-03 13:48:47 -05:00

20 lines
504 B
C#

namespace MediaBrowser.Model.Sync
{
public class LocalItemQuery
{
public string ServerId { get; set; }
public string AlbumArtist { get; set; }
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[] { };
}
}
}