jellyfin/MediaBrowser.Model/Dto/IItemDto.cs

15 lines
359 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Dto
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Interface IItemDto.
2018-12-28 00:27:57 +01:00
/// </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; }
}
}