yavsc/YavscLib/Identity/IApplicationUser.cs

13 lines
335 B
C#

8 years ago
namespace YavscLib
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; }
}
}