namespace FlatRender.ContentSvc.Models.Requests; /// 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. public record DuplicateProjectRequest( string? Aspect, int? OriginalWidth, int? OriginalHeight, string? Resolution, string? Name, Guid? ContainerId );