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[] { };
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|