11 lines
399 B
C#
11 lines
399 B
C#
using GozareshgirProgramManager.Application.Modules.Projects.Commands.SetTimeProject;
|
|
|
|
namespace GozareshgirProgramManager.Application.Modules.Projects.DTOs;
|
|
|
|
public class SetTimeProjectSkillItem
|
|
{
|
|
public Guid SkillId { get; set; }
|
|
public long? UserId { get; set; }
|
|
public SetTimeSectionTime InitData { get; set; }
|
|
public List<SetTimeSectionTime> AdditionalTime { get; set; } = [];
|
|
} |