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