manager-service/ManagerService/DTOs/ProgrammeBlockDTO.cs
2025-07-16 15:28:54 +02:00

16 lines
451 B
C#

using System;
using System.Collections.Generic;
namespace ManagerService.DTOs
{
public class ProgrammeBlockDTO
{
public string id { get; set; }
public List<TranslationDTO> title { get; set; }
public List<TranslationDTO> description { get; set; }
public DateTime startTime { get; set; }
public DateTime endTime { get; set; }
public List<MapAnnotationDTO> mapAnnotations { get; set; }
}
}