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