manager-service/Manager.Interfaces/DTO/ExportConfigurationDTO.cs
2021-08-04 18:07:21 +02:00

13 lines
294 B
C#

using DevExpress.Xpo;
using System;
using System.Collections.Generic;
namespace Manager.Interfaces.DTO
{
public class ExportConfigurationDTO : ConfigurationDTO
{
public List<SectionDTO> sections { get; set; }
public List<ResourceDTO> resources { get; set; }
}
}