updated nuget

This commit is contained in:
Luke Pulverenti
2015-03-03 13:48:47 -05:00
parent 2fc0686c30
commit 5878190cab
11 changed files with 79 additions and 12 deletions

View File

@@ -0,0 +1,19 @@

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