#nullable disable namespace MediaBrowser.Controller.Entities { /// /// Interface IHasAspectRatio. /// public interface IHasAspectRatio { /// /// Gets or sets the aspect ratio. /// /// The aspect ratio. string AspectRatio { get; set; } } }