24 lines
881 B
C#
24 lines
881 B
C#
using Marco.Pms.Model.Dtos.Attendance;
|
|
using Marco.Pms.Model.ViewModels.Activities;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.AttendanceVM
|
|
{
|
|
public class AttendanceLogVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Comment { get; set; } = string.Empty;
|
|
public BasicEmployeeVM? Employee { get; set; }
|
|
public DateTime? ActivityTime { get; set; }
|
|
public ATTENDANCE_MARK_TYPE Activity { get; set; }
|
|
public byte[]? Photo { get; set; } // To store the captured photo
|
|
public string? Latitude { get; set; }
|
|
public string? Longitude { get; set; }
|
|
|
|
public DateTime UpdatedOn { get; set; }
|
|
public BasicEmployeeVM? UpdatedByEmployee { get; set; }
|
|
public Guid? DocumentId { get; set; }
|
|
public string? PreSignedUrl { get; set; }
|
|
public string? ThumbPreSignedUrl { get; set; }
|
|
}
|
|
}
|