50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
namespace BMA.EHR.Leave.Service.DTOs.AdditionalCheck
|
|
{
|
|
public class GetAdditionalCheckRequestDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string FullName { get; set; }
|
|
public string? Prefix { get; set; } = string.Empty;
|
|
public string? FirstName { get; set; } = string.Empty;
|
|
public string? LastName { get; set; } = string.Empty;
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime CheckDate { get; set; }
|
|
|
|
public bool CheckInEdit { get; set; }
|
|
|
|
public bool CheckOutEdit { get; set; }
|
|
|
|
public string CheckInTime { get; set; }
|
|
|
|
public string CheckOutTime { get; set; }
|
|
|
|
public string? CheckInStatus { get; set; }
|
|
|
|
public string? CheckOutStatus { get; set; }
|
|
|
|
public string StartTimeMorning { get; set; }
|
|
|
|
public string EndTimeMorning { get; set; }
|
|
|
|
public string StartTimeAfternoon { get; set; }
|
|
|
|
public string EndTimeAfternoon { get; set; }
|
|
|
|
public string Reason { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int StatusSort { get; set; } = 0;
|
|
|
|
public string? POI { get; set; } = string.Empty;
|
|
|
|
public double? Latitude { get; set; } = 0.0;
|
|
|
|
public double? Longitude { get; set; } = 0.0;
|
|
}
|
|
}
|