2025-03-19 08:57:29 +01:00

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