Files
Wishlist/wishlist/wishlist.Client/UserInfo.cs
2024-03-31 14:24:31 +02:00

11 lines
347 B
C#

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