16 lines
451 B
C#
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; }
|
|
}
|
|
}
|