blob: 795a557ca08979ac3ad6813b8d6ad8891fdd5d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace MediaBrowser.Model.Sync
{
public class LocalItemQuery
{
public string ServerId { get; set; }
public string AlbumArtistId { 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[] { };
}
}
}
|