using System; using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Dto { /// /// Class ImageOptions /// public class ImageOptions { /// /// Gets or sets the type of the image. /// /// The type of the image. public ImageType ImageType { get; set; } /// /// Gets or sets the index of the image. /// /// The index of the image. public int? ImageIndex { get; set; } /// /// Gets or sets the width. /// /// The width. public int? Width { get; set; } /// /// Gets or sets the height. /// /// The height. public int? Height { get; set; } /// /// Gets or sets the width of the max. /// /// The width of the max. public int? MaxWidth { get; set; } /// /// Gets or sets the height of the max. /// /// The height of the max. public int? MaxHeight { get; set; } /// /// Gets or sets the quality. /// /// The quality. public int? Quality { get; set; } /// /// Gets or sets the image tag. /// If set this will result in strong, unconditional response caching /// /// The hash. public Guid? Tag { get; set; } } }