15 lines
423 B
C#
15 lines
423 B
C#
using Marco.Pms.Model.ServiceProject;
|
|
using Marco.Pms.Model.ViewModels.Activities;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.ServiceProject
|
|
{
|
|
public class JobUpdateLogVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public JobStatus? Status { get; set; }
|
|
public JobStatus? NextStatus { get; set; }
|
|
public string? Comment { get; set; }
|
|
public BasicEmployeeVM? UpdatedBy { get; set; }
|
|
}
|
|
}
|