13 lines
294 B
C#
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; }
|
|
}
|
|
|
|
} |