Files
game-ideas/src/GameIdeas/Client/GameIdeas.BlazorApp/Services/AuthentificationService.cs
Egamorf 4183b4b616 Add header for game list (#3)
Co-authored-by: Maxime Adler <madler@sqli.com>
Reviewed-on: #3
2025-02-27 01:09:05 +01:00

22 lines
304 B
C#

namespace GameIdeas.BlazorApp.Services;
public class AuthentificationService
{
private bool isLogin;
public bool IsLogin
{
get { return isLogin; }
}
public void Login()
{
isLogin = true;
}
public void Logout()
{
isLogin = false;
}
}