jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

14 lines
274 B
C#
Raw Normal View History

2015-01-24 14:03:55 -05:00

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