2018-10-08 23:33:18 +02:00
|
|
|
|
namespace LaDOSE.Entity.Wordpress
|
|
|
|
|
|
{
|
|
|
|
|
|
public class WPBooking
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
//# WPEventId, WPUserId, Message, Meta
|
|
|
|
|
|
public int WPEventId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public WPEvent WPEvent { get; set; }
|
|
|
|
|
|
public int WPUserId { get; set; }
|
|
|
|
|
|
public WPUser WPUser { get; set; }
|
|
|
|
|
|
public string Message { get; set; }
|
2019-02-26 01:26:03 +01:00
|
|
|
|
|
2018-10-08 23:33:18 +02:00
|
|
|
|
public string Meta { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|