using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.RemoteDesktop { public class VideoConfiguration { public int FrameWidth { get; set; } public int FrameHeight { get; set; } public double FrameRate { get; set; } public VideoQuality Quality { get; set; } public VideoConfiguration() { FrameWidth = 800; FrameHeight = 1280; FrameRate = 5; Quality = VideoQuality.Low; } } }