From ac3ed6e189dee887945e5fea73b618276600e322 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Wed, 7 Feb 2018 20:17:26 +0100 Subject: [PATCH] fixes latest commit --- Yavsc.Abstract/Identity/ClientProviderInfo.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Yavsc.Abstract/Identity/ClientProviderInfo.cs b/Yavsc.Abstract/Identity/ClientProviderInfo.cs index 0733b196..2b7df14a 100644 --- a/Yavsc.Abstract/Identity/ClientProviderInfo.cs +++ b/Yavsc.Abstract/Identity/ClientProviderInfo.cs @@ -6,9 +6,11 @@ namespace Yavsc.Models.Messaging { public string UserName { get; set; } public string Avatar { get; set; } + + [Key] public string UserId { get; set; } public string EMail { get; set; } public string Phone { get; set; } - public ILocation BillingAddress { get; set; } + public long BillingAddressId { get; set; } } }