1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#nullable disable namespace MediaBrowser.Controller.Entities { /// <summary> /// Interface IHasAspectRatio. /// </summary> public interface IHasAspectRatio { /// <summary> /// Gets or sets the aspect ratio. /// </summary> /// <value>The aspect ratio.</value> string AspectRatio { get; set; } } }