using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Configuration
{
public class ImageOption
{
///
/// 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; }
public ImageOption()
{
Limit = 1;
}
}
}