jellyfin/MediaBrowser.Model/Dto/IItemDto.cs

16 lines
362 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; }
}
}