public static void Login(User user) { if (_currentUser == null) { _currentUser = new CurrentUser(user.Id, user.Name); UserStateNotify?.Invoke(true); } }
public static void Logout() { _currentUser = null; UserStateNotify?.Invoke(false); }