yavsc/Yavsc/Models/Messaging/ClientProviderInfo.cs

16 lines
444 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;
namespace Yavsc.Models.Messaging
2016-09-17 03:36:34 +02:00
{
2017-01-19 12:59:49 +01:00
using Models.Relationship;
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 string EMail { get; set; }
public string Phone { get; set; }
public Location BillingAddress { get; set; }
}
}