38f96af079
Refs #575
13 lines
270 B
C#
13 lines
270 B
C#
namespace MediaBrowser.Api
|
|
{
|
|
public interface IHasDtoOptions : IHasItemFields
|
|
{
|
|
bool? EnableImages { get; set; }
|
|
bool? EnableUserData { get; set; }
|
|
|
|
int? ImageTypeLimit { get; set; }
|
|
|
|
string EnableImageTypes { get; set; }
|
|
}
|
|
}
|