aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasAspectRatio.cs
blob: 3aeb7468f2e9518061da485828a1655ddc70a247 (plain)
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; }
    }
}