namespace WorkflowApp.Models
{
    public class CopyRequest
    {
        public string? SourceLocation { get; set; }

        public string? TargetLocation { get; set; }
    }
}