manager-service/ManagerService/DTOs/ProgrammeBlockDTO.cs

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; }
}
}