#pragma warning disable CS1591 using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Configuration { public class ImageOption { public ImageOption() { Limit = 1; } /// /// Gets or sets the type. /// /// The type. public ImageType Type { get; set; } /// /// Gets or sets the limit. /// /// The limit. public int Limit { get; set; } /// /// Gets or sets the minimum width. /// /// The minimum width. public int MinWidth { get; set; } } }