using Marco.Pms.Model.Master; using Marco.Pms.Model.ViewModels.Activities; using Marco.Pms.Model.ViewModels.Master; using Marco.Pms.Model.ViewModels.Organization; namespace Marco.Pms.Model.ViewModels.ServiceProject { public class ServiceProjectVM { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; public string ShortName { get; set; } = string.Empty; public string Address { get; set; } = string.Empty; public DateTime AssignedDate { get; set; } public StatusMaster? Status { get; set; } public BasicOrganizationVm? Client { get; set; } public List? Services { get; set; } public BasicEmployeeVM? CreatedBy { get; set; } public BasicEmployeeVM? UpdatedBy { get; set; } public DateTime? UpdatedAt { get; set; } public DateTime CreatedAt { get; set; } } }