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.
jellyfin/MediaBrowser.Model/Sync/LocalItemQuery.cs

20 lines
504 B

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