27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
using Marco.Pms.Model.Master;
|
|
using Marco.Pms.Model.ViewModels.Activities;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Organization
|
|
{
|
|
public class OrganizationDetailsVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? ContactPerson { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? ContactNumber { get; set; }
|
|
public double SPRID { get; set; }
|
|
public int ActiveEmployeeCount { get; set; }
|
|
public int ActiveApplicationUserCount { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public BasicEmployeeVM? CreatedBy { get; set; }
|
|
public BasicEmployeeVM? UpdatedBy { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public List<ProjectServiceMappingVM>? Projects { get; set; }
|
|
public List<GlobalServiceMaster>? Services { get; set; }
|
|
public string? logoImage { get; set; }
|
|
}
|
|
}
|