Files
TheXamlGuy/Framework/Camera/Captured.cs
T
2022-11-01 15:26:08 +00:00

13 lines
209 B
C#

using System.Drawing;
namespace TheXamlGuy.Framework.Camera;
public record Captured
{
public Bitmap? Photo { get; init; }
public int Width { get; init; }
public int Height { get; init; }
}