12 lines
174 B
C#
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; }
|
|
}
|