2023-11-15 15:38:39 +07:00
|
|
|
|
namespace BMA.EHR.Leave.Service.DTOs.CheckIn
|
2023-12-13 09:17:43 +07:00
|
|
|
|
{
|
2023-11-13 16:56:17 +07:00
|
|
|
|
public class CheckInHistoryForAdminDto
|
|
|
|
|
|
{
|
2023-11-15 15:38:39 +07:00
|
|
|
|
public Guid Id { get; set; } = Guid.Empty;
|
2023-11-13 16:56:17 +07:00
|
|
|
|
|
|
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
2025-10-06 15:12:40 +07:00
|
|
|
|
public string? Prefix { get; set; } = string.Empty;
|
|
|
|
|
|
public string? FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string? LastName { get; set; } = string.Empty;
|
2023-11-13 16:56:17 +07:00
|
|
|
|
|
|
|
|
|
|
public DateTime? CheckInDate { get; set; } = DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckInTime { get; set; } = "00:00";
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckInLocation { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public double? CheckInLat { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
|
|
public double? CheckInLon { get; set; } = 0;
|
|
|
|
|
|
|
2023-11-24 16:52:48 +07:00
|
|
|
|
public string? CheckInImage { get; set; } = string.Empty;
|
2023-11-13 16:56:17 +07:00
|
|
|
|
|
2023-12-13 09:17:43 +07:00
|
|
|
|
public bool IsLocationCheckIn { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckInLocationName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2023-11-13 16:56:17 +07:00
|
|
|
|
public DateTime? CheckOutDate { get; set; } = DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckOutTime { get; set; } = "00:00";
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckOutLocation { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public double? CheckOutLat { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
|
|
public double? CheckOutLon { get; set; } = 0;
|
|
|
|
|
|
|
2023-11-24 16:52:48 +07:00
|
|
|
|
public string? CheckOutImage { get; set; } = string.Empty;
|
2023-12-13 09:17:43 +07:00
|
|
|
|
|
|
|
|
|
|
public bool IsLocationCheckOut { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
|
|
public string? CheckOutLocationName { get; set; } = string.Empty;
|
2025-01-27 14:18:22 +07:00
|
|
|
|
|
|
|
|
|
|
public string ProfileType { get; set; } = string.Empty;
|
2023-11-13 16:56:17 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|