mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
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; }
|
|
}
|
|
}
|