2019-02-26 01:26:03 +01:00
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.DTO
|
|
|
|
|
|
{
|
2019-03-12 22:23:38 +01:00
|
|
|
|
public class WPEventDTO
|
2019-02-26 01:26:03 +01:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
// Id, Name, Slug, Date
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Slug { get; set; }
|
|
|
|
|
|
public DateTime? Date { get; set; }
|
2019-03-12 22:23:38 +01:00
|
|
|
|
public List<WPBookingDTO> WpBookings { get; set; }
|
2019-03-09 14:03:25 +01:00
|
|
|
|
}
|
2019-02-26 01:26:03 +01:00
|
|
|
|
}
|