jellyfin/MediaBrowser.Model/Dto/IItemDto.cs

15 lines
359 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Dto
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// Interface IItemDto.
2018-12-27 18:27:57 -05: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; }
}
}