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