aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ImageOption.cs
blob: 3b985bb1bcdab4e067abbea6deb84b2459126069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using MediaBrowser.Model.Entities;

namespace MediaBrowser.Model.Configuration
{
    public class ImageOption
    {
        /// <summary>
        /// Gets or sets the type.
        /// </summary>
        /// <value>The type.</value>
        public ImageType Type { get; set; }
        /// <summary>
        /// Gets or sets the limit.
        /// </summary>
        /// <value>The limit.</value>
        public int Limit { get; set; }

        /// <summary>
        /// Gets or sets the minimum width.
        /// </summary>
        /// <value>The minimum width.</value>
        public int MinWidth { get; set; }

        public ImageOption()
        {
            Limit = 1;
        }
    }
}