yavsc/Yavsc.Abstract/Identity/IApplicationUser.cs

13 lines
332 B
C#

namespace Yavsc
8 years ago
{
public interface IApplicationUser
{
7 years ago
string Id { get; set; }
string UserName { get; set; }
string Avatar { get ; set; }
8 years ago
IAccountBalance AccountBalance { get; set; }
string DedicatedGoogleCalendar { get; set; }
ILocation PostalAddress { get; set; }
}
}