jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

13 lines
270 B
C#
Raw Normal View History

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; }
}
}