yavsc/Yavsc.Abstract/Messaging/RdvQueryProviderInfo.cs

23 lines
511 B
C#
Raw Normal View History

2016-10-31 10:26:03 +01:00
using System;
2018-07-16 02:36:44 +02:00
using Yavsc.Abstract.Identity;
2016-10-31 10:26:03 +01:00
2017-01-19 12:59:49 +01:00
namespace Yavsc.Models
2016-10-31 10:26:03 +01:00
{
2017-02-27 19:28:32 +01:00
public class RdvQueryProviderInfo
2016-10-31 10:26:03 +01:00
{
public ClientProviderInfo Client { get; set; }
public ILocation Location { get; set; }
2016-10-31 10:26:03 +01:00
public long Id { get; set; }
2017-04-01 02:14:10 +02:00
public DateTime? EventDate { get; set; }
2016-10-31 10:26:03 +01:00
public decimal? Previsional { get; set; }
public string Reason { get; set; }
2017-01-16 15:34:05 +01:00
2017-04-01 02:14:10 +02:00
public string ActivityCode { get; set; }
public string BillingCode { get; set; }
2016-10-31 10:26:03 +01:00
}
2017-04-01 02:14:10 +02:00
2016-10-31 10:26:03 +01:00
}