namespace Marco.Pms.Model.Dtos.Tenant { public class ProjectManagementDetailsDto { public List? FeatureId { get; set; } public bool Enabled { get; set; } = false; public int MaxProject { get; set; } = 10; public double MaxTaskPerProject { get; set; } = 100000000; public bool GanttChart { get; set; } = false; public bool ResourceAllocation { get; set; } = false; } }