1 files changed, 29 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Core/RuntimeCache.cs b/MatrixRoomUtils.Core/RuntimeCache.cs
new file mode 100644
index 0000000..45262db
--- /dev/null
+++ b/MatrixRoomUtils.Core/RuntimeCache.cs
@@ -0,0 +1,29 @@
+using MatrixRoomUtils.Authentication;
+using MatrixRoomUtils.Responses;
+
+namespace MatrixRoomUtils;
+
+public class RuntimeCache
+{
+ public static bool WasLoaded = false;
+ public static string AccessToken { get; set; }
+ public static string? CurrentHomeserver { get; set; }
+ public static AuthenticatedHomeServer CurrentHomeServer { get; set; }
+ public static Dictionary<string, UserInfo> LoginSessions { get; set; } = new();
+
+ public static Dictionary<string, HomeServerResolutionResult> HomeserverResolutionCache { get; set; } = new();
+ public static Dictionary<string, (DateTime cachedAt, ProfileResponse response)> ProfileCache { get; set; } = new();
+}
+
+
+public class UserInfo
+{
+ public ProfileResponse Profile { get; set; } = new();
+ public LoginResponse LoginResponse { get; set; }
+}
+
+public class HomeServerResolutionResult
+{
+ public string Result { get; set; }
+ public DateTime ResolutionTime { get; set; }
+}
|