mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
12 lines
315 B
C#
12 lines
315 B
C#
using Avalonia;
|
|
|
|
namespace Splitter_UI.Models;
|
|
|
|
public sealed class PreviewData
|
|
{
|
|
public Avalonia.Media.Imaging.Bitmap? Frame { get; init; }
|
|
public IReadOnlyList<Rect> FaceBoxes { get; init; } = [];
|
|
public IReadOnlyList<Rect> BodyBoxes { get; init; } = [];
|
|
public Rect? CropRect { get; init; }
|
|
}
|