You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
506 B
20 lines
506 B
|
|
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[] { };
|
|
}
|
|
}
|
|
}
|