aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/IHasDtoOptions.cs
blob: dac366113cf09ad836caeb1704325ca93940e876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace MediaBrowser.Api
{
    public interface IHasDtoOptions : IHasItemFields
    {
        bool? EnableImages { get; set; }

        int? ImageTypeLimit { get; set; }

        string EnableImageTypes { get; set; }
    }
}