using MediatR; using ColaFlow.Modules.ProjectManagement.Application.DTOs; namespace ColaFlow.Modules.ProjectManagement.Application.Commands.CreateProject; /// /// Command to create a new project /// public sealed record CreateProjectCommand : IRequest { public string Name { get; init; } = string.Empty; public string Description { get; init; } = string.Empty; public string Key { get; init; } = string.Empty; public Guid OwnerId { get; init; } }