🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
498 B
C#
16 lines
498 B
C#
using MediatR;
|
|
using ColaFlow.Modules.ProjectManagement.Application.DTOs;
|
|
|
|
namespace ColaFlow.Modules.ProjectManagement.Application.Commands.CreateProject;
|
|
|
|
/// <summary>
|
|
/// Command to create a new project
|
|
/// </summary>
|
|
public sealed record CreateProjectCommand : IRequest<ProjectDto>
|
|
{
|
|
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; }
|
|
}
|