Test Creation DesktopApp

This commit is contained in:
2019-03-09 14:03:25 +01:00
parent e8fd116eab
commit ac9614a70a
34 changed files with 1131 additions and 189 deletions

View File

@@ -12,6 +12,20 @@ namespace LaDOSE.DTO
public string Name { get; set; }
public string Slug { get; set; }
public DateTime? Date { get; set; }
public List<WPBooking> WpBookings { get; set; }
}
public class WPBooking
{
public WPUser WpUser { get; set; }
public string Message { get; set; }
public string Meta { get; set; }
}
public class WPUser
{
public string Name { get; set; }
}
}