yavsc/Yavsc.Abstract/Messaging/RdvQueryProviderInfo.cs

24 lines
511 B
C#

using System;
6 years ago
using Yavsc.Abstract.Identity;
8 years ago
namespace Yavsc.Models
{
8 years ago
public class RdvQueryProviderInfo
{
public ClientProviderInfo Client { get; set; }
public ILocation 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; }
public string BillingCode { get; set; }
}
}