namespace MediaBrowser.Model.Dto
{
    /// 
    /// Interface IItemDto
    /// 
    public interface IItemDto
    {
        /// 
        /// Gets or sets the primary image aspect ratio.
        /// 
        /// The primary image aspect ratio.
        double? PrimaryImageAspectRatio { get; set; }
        /// 
        /// Gets or sets the original primary image aspect ratio.
        /// 
        /// The original primary image aspect ratio.
        double? OriginalPrimaryImageAspectRatio { get; set; }
    }
}