Creation des Challonges a partir des Event WordPress

This commit is contained in:
2018-10-08 23:33:18 +02:00
parent 70b5ea54f7
commit 39075051b2
10 changed files with 264 additions and 114 deletions

View File

@@ -0,0 +1,16 @@
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; }
public string Meta { get; set; }
}
}