2026-09-06 15:50:40 +01:00
|
|
|
|
#nullable enable annotations
|
|
|
|
|
|
|
|
|
|
|
|
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; }
|
2025-06-29 19:53:56 +01:00
|
|
|
|
string? UserName { get; set; }
|
|
|
|
|
|
string? Avatar { get ; set; }
|
|
|
|
|
|
IAccountBalance? AccountBalance { get; }
|
|
|
|
|
|
string? DedicatedGoogleCalendar { get; }
|
|
|
|
|
|
ILocation? PostalAddress { get; }
|
2016-07-20 13:52:38 +02:00
|
|
|
|
}
|
2017-02-07 15:04:58 +01:00
|
|
|
|
}
|