IHasAspectRatio.cs 361 B

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