2018-07-16 02:36:44 +02:00
|
|
|
|
namespace Yavsc.Abstract.Identity
|
2016-07-20 13:52:38 +02:00
|
|
|
|
{
|
|
|
|
|
|
public interface IApplicationUser
|
|
|
|
|
|
{
|
2017-05-02 13:10:23 +02:00
|
|
|
|
string Id { get; set; }
|
|
|
|
|
|
string UserName { get; set; }
|
|
|
|
|
|
string Avatar { get ; set; }
|
2016-07-20 13:52:38 +02:00
|
|
|
|
IAccountBalance AccountBalance { get; set; }
|
|
|
|
|
|
string DedicatedGoogleCalendar { get; set; }
|
|
|
|
|
|
ILocation PostalAddress { get; set; }
|
|
|
|
|
|
}
|
2017-02-07 15:04:58 +01:00
|
|
|
|
}
|