13 lines
376 B
C#

namespace Marco.Pms.Model.ViewModels.ServiceProject
{
public class BasicJobTicketVM
{
public Guid Id { get; set; }
public string? Title { get; set; }
public string? Description { get; set; }
public string? JobTicketUId { get; set; }
public string? StatusName { get; set; }
public bool IsArchive { get; set; }
}
}