13 lines
231 B
C#
13 lines
231 B
C#
|
|
namespace MediaBrowser.Api
|
|
{
|
|
public interface IHasDtoOptions : IHasItemFields
|
|
{
|
|
bool? EnableImages { get; set; }
|
|
|
|
int? ImageTypeLimit { get; set; }
|
|
|
|
string EnableImageTypes { get; set; }
|
|
}
|
|
}
|