jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

14 lines
274 B
C#
Raw Normal View History

2015-01-24 12:03:55 -07:00

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