18 lines
377 B
C#
18 lines
377 B
C#
using System;
|
||
|
||
namespace Yavsc.Model
|
||
{
|
||
|
||
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; }
|
||
}
|
||
}
|