13 lines
379 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
public List<EventAgendaDTO> events { get; set; }
}
}