25 lines
781 B
C#
25 lines
781 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.Entities.TimeKeeping
|
|
{
|
|
public class AttendanceDto
|
|
{
|
|
[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; }
|
|
public string? MedRepName { get; set; }
|
|
}
|
|
}
|