Init Git
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using AMREZ.EOP.Domain.Shared.HumanResources;
|
||||
|
||||
namespace AMREZ.EOP.Contracts.DTOs.HumanResources.EmploymentAdd;
|
||||
|
||||
public sealed class EmploymentAddRequest
|
||||
{
|
||||
public Guid UserProfileId { get; set; }
|
||||
public EmploymentType EmploymentType { get; set; } = EmploymentType.Permanent;
|
||||
public DateTime StartDate { get; set; }
|
||||
public Guid? DepartmentId { get; set; }
|
||||
public Guid? PositionId { get; set; }
|
||||
public Guid? ManagerUserId{ get; set; }
|
||||
public string? WorkEmail { get; set; }
|
||||
public string? WorkPhone { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user