18 lines
605 B
C#
18 lines
605 B
C#
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<SetTimeProjectSkillItem> 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; }
|
|
} |