35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
namespace Marco.Pms.Model.Dtos.Employees
|
|
{
|
|
public class CreateUserDto
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public required string FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? MiddleName { get; set; }
|
|
public string? Email { get; set; }
|
|
|
|
public string? Gender { get; set; }
|
|
public string? BirthDate { get; set; }
|
|
public string? JoiningDate { get; set; }
|
|
|
|
public string? PermanentAddress { get; set; }
|
|
public string? CurrentAddress { get; set; }
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
public string? EmergencyPhoneNumber { get; set; }
|
|
public string? EmergencyContactPerson { get; set; }
|
|
public Guid JobRoleId { get; set; }
|
|
}
|
|
public class MobileUserManageDto
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string? LastName { get; set; }
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
public string? Gender { get; set; }
|
|
public Guid JobRoleId { get; set; }
|
|
public string? ProfileImage { get; set; }
|
|
}
|
|
|
|
}
|