13 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Manager.Interfaces.DTO
{
public class AgendaDTO
{
public List<TranslationDTO> resourceIds { get; set; } // All json files for all languages
public MapProvider? mapProvider { get; set; } // Default = Google
}
}