using MediaBrowser.Model.Entities; namespace MediaBrowser.Api.Images { /// /// Class ImageRequest /// public class ImageRequest : DeleteImageRequest { /// /// The max width /// public int? MaxWidth { get; set; } /// /// The max height /// public int? MaxHeight { get; set; } /// /// The width /// public int? Width { get; set; } /// /// The height /// public int? Height { get; set; } /// /// Gets or sets the quality. /// /// The quality. public int? Quality { get; set; } /// /// Gets or sets the tag. /// /// The tag. public string Tag { get; set; } } /// /// Class DeleteImageRequest /// public class DeleteImageRequest { /// /// Gets or sets the type of the image. /// /// The type of the image. public ImageType Type { get; set; } /// /// Gets or sets the index. /// /// The index. public int? Index { get; set; } } }