Initial commit
This commit is contained in:
commit
8d4b2bc943
17 changed files with 389 additions and 0 deletions
9
WebApp/RequestBody.cs
Normal file
9
WebApp/RequestBody.cs
Normal 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 );
|
||||
Loading…
Add table
Add a link
Reference in a new issue