2019-01-13 20:01:16 +00:00
|
|
|
namespace MediaBrowser.Controller.Entities
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface IHasAspectRatio
|
|
|
|
/// </summary>
|
|
|
|
public interface IHasAspectRatio
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the aspect ratio.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The aspect ratio.</value>
|
|
|
|
string AspectRatio { get; set; }
|
|
|
|
}
|
|
|
|
}
|