All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m16s
14 lines
371 B
C#
14 lines
371 B
C#
#nullable enable annotations
|
|
|
|
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; }
|
|
}
|
|
}
|