14 lines
457 B
C#
14 lines
457 B
C#
using GozareshgirProgramManager.Application._Common.Interfaces;
|
|
|
|
namespace GozareshgirProgramManager.Application.Modules.Projects.Commands.CreateProjectWithHierarchy;
|
|
|
|
/// <summary>
|
|
/// Command to create a new project with the new hierarchy structure
|
|
/// </summary>
|
|
public record CreateProjectWithHierarchyCommand(
|
|
string Name,
|
|
string? Description = null,
|
|
DateTime? PlannedStartDate = null,
|
|
DateTime? PlannedEndDate = null
|
|
) : IBaseCommand;
|