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