yavsc/Yavsc/Model/Messaging/ClientProviderInfo.cs

17 lines
497 B
C#
Raw Normal View History

2016-09-17 03:36:34 +02:00
2016-11-01 23:22:46 +01:00
using System.ComponentModel.DataAnnotations;
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; }
2016-11-01 23:22:46 +01:00
[Key]
2016-10-31 10:26:03 +01:00
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; }
2016-11-01 23:22:46 +01:00
public string ChatHubConnectionId { get; set; }
2016-10-31 10:26:03 +01:00
}
}