Files
lux/LUX.UI/LUX.UI.Client/UserInfo.cs
T
2025-06-23 14:54:54 +02:00

11 lines
345 B
C#

namespace LUX.UI.Client
{
// Add properties to this class and update the server and client AuthenticationStateProviders
// to expose more information about the authenticated user to the client.
public class UserInfo
{
public required string UserId { get; set; }
public required string Email { get; set; }
}
}