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? Projects { get; set; } public string? logoImage { get; set; } } }