yavsc/Yavsc/Models/Messaging/RdvQueryProviderInfo.cs

24 lines
493 B
C#

using System;
8 years ago
namespace Yavsc.Models
{
using Models.Messaging;
8 years ago
using Models.Relationship;
8 years ago
public class RdvQueryProviderInfo
{
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; }
8 years ago
public string ActivityCode { get; set; }
}
}