LSFE/LSFE.Infrastructure/Dto/TimeKeeping/AttendanceDto.cs
2026-07-30 10:31:04 +08:00

28 lines
955 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto.TimeKeeping
{
public class AttendanceDto
{
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; }
public string? SignatureBase64 { get; set; }
public string? MedRepName { get; set; }
public DateTime? EndDate { get; set; }
public DateTime? StartDate { get; set; }
public string? Period { get; set; }
}
}