19 lines
811 B
C#
19 lines
811 B
C#
namespace UtopiaCanteen.Shared;
|
|
|
|
public sealed class EmployeeDto
|
|
{
|
|
public string ParentDocumentId { get; set; } = string.Empty;
|
|
public string EmployeeId { get; set; } = string.Empty;
|
|
public string UindSerial { get; set; } = string.Empty;
|
|
public int FunctionId { get; set; }
|
|
public int DepartmentId { get; set; }
|
|
public DateTime? TagCreatedAtUtc { get; set; }
|
|
public string TagCreatedBy { get; set; } = string.Empty;
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string MiddleName { get; set; } = string.Empty;
|
|
public string DepartmentTitle { get; set; } = string.Empty;
|
|
public string DepartmentType { get; set; } = string.Empty;
|
|
public string LocationSiteId { get; set; } = string.Empty;
|
|
public string GradeType { get; set; } = string.Empty;
|
|
}
|