jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

14 lines
274 B
C#
Raw Normal View History

2015-01-24 20:03:55 +01:00

2014-12-01 13:43:34 +01:00
namespace MediaBrowser.Api
{
public interface IHasDtoOptions : IHasItemFields
{
bool? EnableImages { get; set; }
2016-08-17 21:28:43 +02:00
bool? EnableUserData { get; set; }
2014-12-01 13:43:34 +01:00
int? ImageTypeLimit { get; set; }
string EnableImageTypes { get; set; }
}
}