ImageOption.cs 766 B

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