Files
2026-07-15 12:48:27 -05:00

10 lines
313 B
C#

namespace PolyComm.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; }
}