using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace LSFE.Infrastructure.Entities.TimeKeeping { [Table("Attendance")] public class Attendance { [Key] public int AttendanceId { get; set; } public string? AppAttendanceId { get; set; } public DateTime? TimeIn { get; set; } public DateTime? TimeOut { get; set; } public string? UserId { get; set; } public string? TimeInLocation { get; set; } public string? TimeOutLocation { get; set; } public string? SignatureFileNameIn { get; set; } public string? SignatureFileNameOut { get; set; } } }