9 lines
240 B
C#
9 lines
240 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WebApp;
|
|||
|
|
|
|||
|
|
public record struct RequestBody(
|
|||
|
|
[property: JsonPropertyName("canvas_rect")]
|
|||
|
|
string CanvasRect,
|
|||
|
|
[property: JsonPropertyName("output_scale")]
|
|||
|
|
double OutputScale );
|