2025-03-20 16:25:23 +01:00

12 lines
322 B
C#

using ManagerService.DTOs;
using System.Collections.Generic;
namespace Manager.DTOs
{
public class AgendaDTO : SectionDTO
{
public List<TranslationDTO> resourceIds { get; set; } // All json files for all languages
public MapProvider? agendaMapProvider { get; set; } // Default = Google
}
}