11 lines
308 B
C#
11 lines
308 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class DirectoryDetailsDto
|
|
{
|
|
public List<Guid>? FeatureId { get; set; }
|
|
public bool Enabled { get; set; } = false;
|
|
public int BucketLimit { get; set; } = 25;
|
|
public bool OrganizationChart { get; set; } = false;
|
|
}
|
|
}
|