12 lines
386 B
C#
12 lines
386 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class ProjectManagementDetailsDto
|
|
{
|
|
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;
|
|
}
|
|
}
|