mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-27 02:56:54 +01:00
updated nuget
This commit is contained in:
19
MediaBrowser.Model/Sync/LocalItemQuery.cs
Normal file
19
MediaBrowser.Model/Sync/LocalItemQuery.cs
Normal 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[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user