feat: add OrgId to settings for caching

This commit is contained in:
SuperDooper
2026-05-08 14:40:28 +02:00
parent 87ce720a31
commit 721075d969
+1
View File
@@ -8,6 +8,7 @@ public class AppSettings
{ {
public string CookieStore { get; set; } = ""; public string CookieStore { get; set; } = "";
public string BurnHistory { get; set; } = ""; public string BurnHistory { get; set; } = "";
public string OrgId { get; set; } = "";
public int RefreshInterval { get; set; } = 120; public int RefreshInterval { get; set; } = 120;
public bool ShowInTaskbar { get; set; } = true; public bool ShowInTaskbar { get; set; } = true;
public bool BetaChannel { get; set; } = false; public bool BetaChannel { get; set; } = false;