IItemDto.cs 604 B

123456789101112131415161718192021
  1. 
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. /// <summary>
  5. /// Interface IItemDto
  6. /// </summary>
  7. public interface IItemDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the primary image aspect ratio.
  11. /// </summary>
  12. /// <value>The primary image aspect ratio.</value>
  13. double? PrimaryImageAspectRatio { get; set; }
  14. /// <summary>
  15. /// Gets or sets the original primary image aspect ratio.
  16. /// </summary>
  17. /// <value>The original primary image aspect ratio.</value>
  18. double? OriginalPrimaryImageAspectRatio { get; set; }
  19. }
  20. }