17 lines
341 B
C#
17 lines
341 B
C#
namespace ChessCubing.App.Models.Auth;
|
|
|
|
public sealed class AuthSessionResponse
|
|
{
|
|
public bool IsAuthenticated { get; set; }
|
|
|
|
public string? Subject { get; set; }
|
|
|
|
public string? Username { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string[] Roles { get; set; } = [];
|
|
}
|