hrms-api-backend/BMA.EHR.Leave/DTOs/AdditionalCheck/GetAdditionalCheckRequestDto.cs
harid 5efb1c99c6
Some checks failed
release-dev / release-dev (push) Failing after 12s
sortBy #1814
2025-10-06 15:12:40 +07:00

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;
}
}