13 lines
209 B
C#
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; }
|
|
}
|