bulletboards/ImageBoardServerApp/Auth/UserSession.cs

7 lines
No EOL
143 B
C#

namespace ImageBoardServerApp.Auth;
public class UserSession
{
public string Email { get; set; }
public string Role { get; set; }
}