12 lines
401 B
C#
12 lines
401 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace StitcherApi.Models
|
||
|
|
{
|
||
|
|
public record GenerateImageRequest(
|
||
|
|
[property: JsonPropertyName("canvas_rect")] string CanvasRect,
|
||
|
|
[property: JsonPropertyName("crop_offset")] float[] CropOffset,
|
||
|
|
[property: JsonPropertyName("crop_size")] float[] CropSize,
|
||
|
|
[property: JsonPropertyName("output_scale")] float OutputScale
|
||
|
|
);
|
||
|
|
}
|