10 lines
278 B
C#
10 lines
278 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class ReportDetailsDto
|
|
{
|
|
public bool BasicReports { get; set; } = true;
|
|
public bool CustomReports { get; set; } = false;
|
|
public List<string> ExportData { get; set; } = new List<string>();
|
|
}
|
|
}
|