yavsc/src/Yavsc.Abstract/Identity/ClientProviderInfo.cs

16 lines
413 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;
2018-07-16 02:36:44 +02:00
namespace Yavsc.Abstract.Identity
2016-09-17 03:36:34 +02:00
{
2016-10-31 10:26:03 +01:00
public class ClientProviderInfo
{
public string UserName { get; set; }
public string Avatar { get; set; }
2018-02-07 20:17:26 +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; }
2018-02-07 20:17:26 +01:00
public long BillingAddressId { get; set; }
2016-10-31 10:26:03 +01:00
}
}