IItemDto.cs 359 B

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