2018-10-22 01:13:42 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2018-10-08 23:33:18 +02:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Entity.Wordpress
|
|
|
|
|
|
{
|
|
|
|
|
|
public class WPEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
// Id, Name, Slug, Date
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Slug { get; set; }
|
2018-10-22 01:13:42 +02:00
|
|
|
|
public DateTime Date { get; set; }
|
2018-10-08 23:33:18 +02:00
|
|
|
|
|
|
|
|
|
|
public virtual IEnumerable<WPBooking> WPBookings { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|