yavsc/Yavsc/Models/Messaging/BookQueryProviderInfo.cs

20 lines
410 B
C#
Raw Normal View History

2016-10-31 10:26:03 +01:00
using System;
namespace Yavsc.Model
{
using Models.Messaging;
2016-10-31 10:26:03 +01:00
public class BookQueryProviderInfo
{
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; }
2016-10-31 10:26:03 +01:00
}
2016-10-31 10:26:03 +01:00
}