14 lines
499 B
C#
14 lines
499 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class ProjectManagementDetailsDto
|
|
{
|
|
public List<Guid>? FeatureId { get; set; }
|
|
public string Name { get; set; } = "Project Management";
|
|
public bool Enabled { get; set; } = false;
|
|
public int MaxProject { get; set; } = 10;
|
|
public double MaxTaskPerProject { get; set; } = 100000;
|
|
public bool GanttChart { get; set; } = false;
|
|
public bool ResourceAllocation { get; set; } = false;
|
|
}
|
|
}
|