yavsc/Yavsc.Abstract/Messaging/RdvQueryProviderInfo.cs

24 lines
511 B
C#

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

using System;
using Yavsc.Abstract.Identity;
namespace Yavsc.Models
{
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; }
public string ActivityCode { get; set; }
public string BillingCode { get; set; }
}
}