Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/WPEventDTO.cs
2019-03-12 22:23:38 +01:00

17 lines
371 B
C#

using System;
using System.Collections.Generic;
namespace LaDOSE.DTO
{
public class WPEventDTO
{
// Id, Name, Slug, Date
public int Id { get; set; }
public string Name { get; set; }
public string Slug { get; set; }
public DateTime? Date { get; set; }
public List<WPBookingDTO> WpBookings { get; set; }
}
}