ImageOption.cs 694 B

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