Files
yavsc/src/Yavsc.Abstract/Identity/IApplicationUser.cs
Paul Schneider 3f1bfc1c3c
All checks were successful
Dotnet build and test / log-the-inputs (push) Successful in 5s
Dotnet build and test / build (push) Successful in 1m58s
fixies the refact of blog spot index
2025-06-29 19:53:56 +01:00

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; }
}
}