51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
namespace BMA.EHR.Leave.Service.DTOs.CheckIn
|
|
{
|
|
public class CheckInDetailForAdminDto
|
|
{
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
|
|
|
public DateTime? CheckInDate { get; set; } = DateTime.MinValue;
|
|
|
|
public string? CheckInStatus { get; set; } = string.Empty;
|
|
|
|
public string? CheckInTime { get; set; } = "00:00";
|
|
|
|
public string? CheckInPOI { get; set; } = string.Empty;
|
|
|
|
public double? CheckInLat { get; set; } = 0;
|
|
|
|
public double? CheckInLon { get; set; } = 0;
|
|
|
|
public string? CheckInImg { get; set; } = string.Empty;
|
|
|
|
public string CheckInDescription { get; set; } = string.Empty;
|
|
|
|
public bool IsLocationCheckIn { get; set; } = true;
|
|
|
|
public string? CheckInLocationName { get; set; } = string.Empty;
|
|
|
|
public DateTime? CheckOutDate { get; set; } = DateTime.MinValue;
|
|
|
|
public string? CheckOutStatus { get; set; } = string.Empty;
|
|
|
|
public string? CheckOutTime { get; set; } = "00:00";
|
|
|
|
public string? CheckOutPOI { get; set; } = string.Empty;
|
|
|
|
public double? CheckOutLat { get; set; } = 0;
|
|
|
|
public double? CheckOutLon { get; set; } = 0;
|
|
|
|
public string? CheckOutImg { get; set; } = string.Empty;
|
|
|
|
public string? CheckOutDescription { get; set; } = string.Empty;
|
|
|
|
public bool IsLocationCheckOut { get; set; } = true;
|
|
|
|
public string? CheckOutLocationName { get; set; } = string.Empty;
|
|
|
|
public string ProfileType { get; set; } = string.Empty;
|
|
}
|
|
}
|