mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-20 05:04:18 +01:00
19 lines
425 B
C#
19 lines
425 B
C#
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; }
|
|
}
|
|
}
|