Files

14 lines
458 B
C#
Raw Permalink Normal View History

namespace FlatRender.ContentSvc.Models.Requests;
/// <summary>Clone a project to a new aspect ratio. Only dimensions (+ optional name/container/
/// resolution) change; all scene/element/colour keys are copied identically. Null fields inherit
/// from the source project.</summary>
public record DuplicateProjectRequest(
string? Aspect,
int? OriginalWidth,
int? OriginalHeight,
string? Resolution,
string? Name,
Guid? ContainerId
);