WIP estimate

This commit is contained in:
Paul Schneider 2016-09-18 00:30:15 +02:00
commit 867e2d502d
6 changed files with 80 additions and 46 deletions

View file

@ -3,14 +3,18 @@ using System;
namespace BookAStar.Model
{
public class ClientProviderInfo
{
public string UserName { get; set; }
public string UserId { get; set; }
public int Rate { get; set; }
}
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; }
public ClientProviderInfo Client { get; set; }
public Location Location { get; set; }
public long Id { get; set; }
public DateTime EventDate { get; set; }
public decimal? Previsionnal { get; set; }
}
}