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