jellyfin/MediaBrowser.Controller/Entities/IHasAspectRatio.cs

17 lines
361 B
C#
Raw Normal View History

#nullable disable
namespace MediaBrowser.Controller.Entities
2018-12-27 18:27:57 -05:00
{
/// <summary>
/// Interface IHasAspectRatio.
2018-12-27 18:27:57 -05:00
/// </summary>
public interface IHasAspectRatio
{
/// <summary>
/// Gets or sets the aspect ratio.
/// </summary>
/// <value>The aspect ratio.</value>
string AspectRatio { get; set; }
}
}