yavsc/Yavsc/Model/Messaging/ClientProviderInfo.cs

21 lines
557 B
C#

using System;
namespace Yavsc.Model
{
8 years ago
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; }
}
8 years ago
public class ClientProviderInfo { 
public string UserName { get; set; }
public string UserId { get; set; }
public int Rate { get; set; }
}
}