mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
14 lines
336 B
C#
14 lines
336 B
C#
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
public class ResolutionConfiguration
|
|
{
|
|
public int MaxWidth { get; set; }
|
|
public int MaxBitrate { get; set; }
|
|
|
|
public ResolutionConfiguration(int maxWidth, int maxBitrate)
|
|
{
|
|
MaxWidth = maxWidth;
|
|
MaxBitrate = maxBitrate;
|
|
}
|
|
}
|
|
} |