jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

13 lines
270 B
C#
Raw Normal View History

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