16 lines
458 B
C#

namespace Marco.Pms.Model.Dtos.Employees
{
public class AttendanceDto
{
public string? Comment { get; set; }
public int EmployeeID { get; set; }
public DateTime? InTime { get; set; }
public DateTime? OutTime { get; set; }
public int ShiftId { get; set; }
public decimal? Latitude { get; set; }
public decimal? Longitude { get; set; }
public bool IsApproved { get; set; }
}
}