Project layout fix

This commit is contained in:
2026-07-15 12:48:27 -05:00
parent ef7099b75e
commit 5f2d0041e4
105 changed files with 554 additions and 479 deletions
+9
View File
@@ -0,0 +1,9 @@
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; }
}