yavsc/src/Yavsc.Abstract/Identity/IApplicationUser.cs
Paul Schneider 6a358d9f78
All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m16s
abstract: enable nullable annotations in legacy files
2026-09-06 15:50:40 +01:00

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