yavsc/Yavsc/Model/Messaging/ClientProviderInfo.cs

21 lines
557 B
C#
Raw Normal View History

2016-09-17 03:36:34 +02:00
using System;
namespace Yavsc.Model
{
2016-10-07 12:49:24 +02:00
public class BookQueryProviderInfo { 
public ClientProviderInfo Client { get; set; }
2016-09-17 03:36:34 +02:00
public Location Location { get; set; }
public long Id { get; set; }
public DateTime EventDate { get ; set; }
public decimal? Previsional { get; set; }
}
2016-10-07 12:49:24 +02:00
public class ClientProviderInfo { 
2016-09-17 03:36:34 +02:00
public string UserName { get; set; }
public string UserId { get; set; }
public int Rate { get; set; }
}
}