yavsc/Yavsc/Model/Messaging/ClientProviderInfo.cs

14 lines
381 B
C#
Raw Normal View History

2016-09-17 03:36:34 +02:00
namespace Yavsc.Model
{
2016-10-31 10:26:03 +01:00
public class ClientProviderInfo
{
public string UserName { get; set; }
public string Avatar { get; set; }
public string UserId { get; set; }
public int Rate { get; set; }
public string EMail { get; set; }
public string Phone { get; set; }
public Location BillingAddress { get; set; }
}
}