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

64 lines
1.4 KiB
C#

using System.Collections.Generic;
using System;
using Manager.DTOs;
namespace ManagerService.DTOs
{
public class EventAgendaDTO
{
public int id { get; set; }
public List<TranslationDTO> label { get; set; }
public List<TranslationDTO> description { get; set; }
public string type { get; set; }
public DateTime? dateAdded { get; set; }
public DateTime? dateFrom { get; set; }
public DateTime? dateTo { get; set; }
public string? website { get; set; }
public string resourceId { get; set; } // Background image id
public ResourceDTO resource { get; set; } // Background image
public EventAddressDTO address { get; set; }
public string phone { get; set; }
public string email { get; set; }
public string sectionAgendaId { get; set; }
public string sectionEventId { get; set; }
}
public class EventAddressDTO
{
public string address { get; set; }
public string streetNumber { get; set; }
public string streetName { get; set; }
public string city { get; set; }
public string state { get; set; }
public string postCode { get; set; }
public string country { get; set; }
public GeometryDTO geometry { get; set; }
public string polyColor { get; set; } // color of the polyline or polygon
public int zoom { get; set; }
}
}