manager-service/Manager.Interfaces/DTO/ExportConfigurationDTO.cs

12 lines
272 B
C#

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; }
}
}