ImageOption.cs 727 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma warning disable CS1591
  2. using MediaBrowser.Model.Entities;
  3. namespace MediaBrowser.Model.Configuration
  4. {
  5. public class ImageOption
  6. {
  7. public ImageOption()
  8. {
  9. Limit = 1;
  10. }
  11. /// <summary>
  12. /// Gets or sets the type.
  13. /// </summary>
  14. /// <value>The type.</value>
  15. public ImageType Type { get; set; }
  16. /// <summary>
  17. /// Gets or sets the limit.
  18. /// </summary>
  19. /// <value>The limit.</value>
  20. public int Limit { get; set; }
  21. /// <summary>
  22. /// Gets or sets the minimum width.
  23. /// </summary>
  24. /// <value>The minimum width.</value>
  25. public int MinWidth { get; set; }
  26. }
  27. }