Files
TheXamlGuy/Media/Capture/MediaCaptureProfile.cs
2022-11-01 15:26:08 +00:00

12 lines
174 B
C#

using System.Drawing;
namespace TheXamlGuy.Media.Capture;
public class MediaFrameFormat
{
public Size Size { get; set; }
public long FrameRate { get; set; }
}