17 lines
513 B
C#
17 lines
513 B
C#
using GozareshgirProgramManager.Application._Common.Interfaces;
|
|
using GozareshgirProgramManager.Domain.ProjectAgg.Enums;
|
|
|
|
namespace GozareshgirProgramManager.Application.Modules.Projects.Commands.AddTaskToPhase;
|
|
|
|
/// <summary>
|
|
/// Command to add a task to an existing phase
|
|
/// </summary>
|
|
public record AddTaskToPhaseCommand(
|
|
Guid PhaseId,
|
|
string Name,
|
|
string? Description = null,
|
|
TaskPriority Priority = TaskPriority.Medium,
|
|
int OrderIndex = 0,
|
|
DateTime? DueDate = null
|
|
) : IBaseCommand;
|