jellyfin/MediaBrowser.Model/Dto/IItemDto.cs

22 lines
604 B
C#
Raw Normal View History


namespace MediaBrowser.Model.Dto
{
2013-04-21 03:17:59 +02:00
/// <summary>
/// Interface IItemDto
/// </summary>
public interface IItemDto
{
2013-04-21 03:17:59 +02:00
/// <summary>
/// Gets or sets the primary image aspect ratio.
/// </summary>
/// <value>The primary image aspect ratio.</value>
double? PrimaryImageAspectRatio { get; set; }
2013-06-05 14:35:18 +02:00
/// <summary>
/// Gets or sets the original primary image aspect ratio.
/// </summary>
/// <value>The original primary image aspect ratio.</value>
double? OriginalPrimaryImageAspectRatio { get; set; }
}
}