XState.cs 298 B

12345678910111213
  1. using Bridge.Html5;
  2. namespace LearnBridgeNet
  3. {
  4. internal static class XState
  5. {
  6. public static bool IsLogin
  7. {
  8. get => Window.SessionStorage[nameof(IsLogin)] as string == "true";
  9. set => Window.SessionStorage[nameof(IsLogin)] = value;
  10. }
  11. }
  12. }