2
0

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. /// <summary>
  8. /// Gets or sets the type.
  9. /// </summary>
  10. /// <value>The type.</value>
  11. public ImageType Type { get; set; }
  12. /// <summary>
  13. /// Gets or sets the limit.
  14. /// </summary>
  15. /// <value>The limit.</value>
  16. public int Limit { get; set; }
  17. /// <summary>
  18. /// Gets or sets the minimum width.
  19. /// </summary>
  20. /// <value>The minimum width.</value>
  21. public int MinWidth { get; set; }
  22. public ImageOption()
  23. {
  24. Limit = 1;
  25. }
  26. }
  27. }