aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ResolutionOptions.cs
blob: b161b4a1e434361e4446ddf2e6e15672322df615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Dlna
{
    /// <summary>
    /// The resolution constraints.
    /// </summary>
    public class ResolutionOptions
    {
        /// <summary>
        /// Gets or sets the maximum width.
        /// </summary>
        public int? MaxWidth { get; set; }

        /// <summary>
        /// Gets or sets the maximum height.
        /// </summary>
        public int? MaxHeight { get; set; }
    }
}