yavsc/Yavsc/Models/Messaging/RdvQueryProviderInfo.cs

23 lines
493 B
C#
Raw Normal View History

2016-10-31 10:26:03 +01:00
using System;
2017-01-19 12:59:49 +01:00
namespace Yavsc.Models
2016-10-31 10:26:03 +01:00
{
using Models.Messaging;
2017-01-19 12:59:49 +01:00
using Models.Relationship;
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 Location Location { get; set; }
public long Id { get; set; }
public DateTime EventDate { get; set; }
public decimal? Previsional { get; set; }
public string Reason { get; set; }
2017-01-16 15:34:05 +01:00
public string ActivityCode { get; set; }
2016-10-31 10:26:03 +01:00
}
2016-10-31 10:26:03 +01:00
}