using GozareshgirProgramManager.Application._Common.Interfaces; using GozareshgirProgramManager.Application.Modules.Projects.DTOs; using GozareshgirProgramManager.Domain.ProjectAgg.Enums; namespace GozareshgirProgramManager.Application.Modules.Projects.Commands.SetTimeProject; public record SetTimeProjectCommand( List SkillItems, Guid Id, ProjectHierarchyLevel Level, bool CascadeToChildren) : IBaseCommand; public class SetTimeSectionTime { public string Description { get; set; } public int Hours { get; set; } public int Minutes { get; set; } }