Initial commit

This commit is contained in:
Meizar 2025-07-26 06:56:07 +07:00
commit 8d4b2bc943
17 changed files with 389 additions and 0 deletions

9
WebApp/RequestBody.cs Normal file
View file

@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace WebApp;
public record struct RequestBody(
[property: JsonPropertyName("canvas_rect")]
string CanvasRect,
[property: JsonPropertyName("output_scale")]
double OutputScale );