Files
jellyfin-jellyfin-1/MediaBrowser.Model/Dto/IItemDto.cs

16 lines
362 B
C#
Raw Normal View History


namespace MediaBrowser.Model.Dto
{
2013-04-20 21:17:59 -04:00
/// <summary>
/// Interface IItemDto
/// </summary>
public interface IItemDto
{
2013-04-20 21:17:59 -04:00
/// <summary>
/// Gets or sets the primary image aspect ratio.
/// </summary>
/// <value>The primary image aspect ratio.</value>
double? PrimaryImageAspectRatio { get; set; }
}
}