jellyfin/MediaBrowser.Model/Dto/IItemDto.cs

16 lines
362 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00

namespace MediaBrowser.Model.Dto
{
/// <summary>
/// Interface IItemDto
/// </summary>
public interface IItemDto
{
/// <summary>
/// Gets or sets the primary image aspect ratio.
/// </summary>
/// <value>The primary image aspect ratio.</value>
double? PrimaryImageAspectRatio { get; set; }
}
}