17 lines
531 B
C#
17 lines
531 B
C#
using Marco.Pms.Model.ServiceProject;
|
|
using Marco.Pms.Model.Utilities;
|
|
|
|
namespace Marco.Pms.Model.Dtos.ServiceProject
|
|
{
|
|
public class JobAttendanceDto
|
|
{
|
|
public required Guid JobTcketId { get; set; }
|
|
public required TAGGING_MARK_TYPE Action { get; set; }
|
|
public string? Latitude { get; set; }
|
|
public string? Longitude { get; set; }
|
|
public string? Comment { get; set; }
|
|
public DateTime? MarkedAt { get; set; }
|
|
public FileUploadModel? Attachment { get; set; }
|
|
}
|
|
}
|