13 lines
341 B
C#
13 lines
341 B
C#
namespace Yavsc.Abstract.Identity
|
|
{
|
|
public interface IApplicationUser
|
|
{
|
|
string Id { get; set; }
|
|
string? UserName { get; set; }
|
|
string? Avatar { get ; set; }
|
|
IAccountBalance? AccountBalance { get; }
|
|
string? DedicatedGoogleCalendar { get; }
|
|
ILocation? PostalAddress { get; }
|
|
}
|
|
}
|