allow RdvQueryProviderInfo to be deserialised

This commit is contained in:
Paul Schneider 2019-09-18 01:38:46 +01:00
commit d01eb761f3
4 changed files with 23 additions and 17 deletions

View file

@ -1,21 +1,22 @@
using System;
using Yavsc.Abstract.Identity;
using Yavsc.Models.Relationship;
namespace Yavsc.Models
{
public class RdvQueryProviderInfo
{
/// <summary>
/// User querying
/// </summary>
/// <value></value>
public ClientProviderInfo Client { get; set; }
public ILocation Location { get; set; }
public Location Location { get; set; }
public long Id { get; set; }
public DateTime? EventDate { get; set; }
public decimal? Previsional { get; set; }
public string Reason { get; set; }
public string ActivityCode { get; set; }
public string BillingCode { get; set; }
}