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

12 lines
306 B
C#

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