namespace MediaBrowser.Model.Dlna
{
///
/// The resolution constraints.
///
public class ResolutionOptions
{
///
/// Gets or sets the maximum width.
///
public int? MaxWidth { get; set; }
///
/// Gets or sets the maximum height.
///
public int? MaxHeight { get; set; }
}
}