IItemDto.cs 362 B

123456789101112131415
  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. }
  15. }