2024-02-28 11:56:53 +01:00

12 lines
245 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
}
}