WIP estimate

This commit is contained in:
Paul Schneider 2016-09-10 00:53:08 +02:00
commit d67c932af2
43 changed files with 816 additions and 94 deletions

View file

@ -0,0 +1,16 @@
using BookAStar.Model.Social;
using System;
namespace BookAStar.Model
{
public class BookQueryData
{
public string Title { get; set; }
public string Description { set; get; }
public string Comment { get; set; }
public long CommandId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public Location Address { get; set; }
}
}