21 lines
733 B
C#
21 lines
733 B
C#
using Marco.Pms.Model.ServiceProject;
|
|
using Marco.Pms.Model.ViewModels.Activities;
|
|
using Marco.Pms.Model.ViewModels.DocumentManager;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.ServiceProject
|
|
{
|
|
public class JobAttendanceLogVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public BasicJobTicketVM? JobTicket { get; set; }
|
|
public BasicDocumentVM? Document { get; set; }
|
|
public string? Latitude { get; set; }
|
|
public string? Longitude { get; set; }
|
|
public TAGGING_MARK_TYPE Action { get; set; }
|
|
public string? Comment { get; set; }
|
|
public BasicEmployeeVM? Employee { get; set; }
|
|
public DateTime MarkedTIme { get; set; }
|
|
public DateTime MarkedAt { get; set; }
|
|
}
|
|
}
|