using Bridge.Html5; namespace LearnBridgeNet { internal static class XState { public static bool IsLogin { get => Window.SessionStorage[nameof(IsLogin)] as string == "true"; set => Window.SessionStorage[nameof(IsLogin)] = value; } } }