11 lines
214 B
C#
11 lines
214 B
C#
using ManagerService.DTOs;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class PdfDTO : SectionDTO
|
|
{
|
|
public List<OrderedTranslationAndResourceDTO> pdfs { get; set; }
|
|
}
|
|
}
|