From 721075d969ed37eea3dfc5d74e0130a715a37f2d Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 14:40:28 +0200 Subject: [PATCH] feat: add OrgId to settings for caching --- windows/AppSettings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/AppSettings.cs b/windows/AppSettings.cs index d11c36a..9c993ed 100644 --- a/windows/AppSettings.cs +++ b/windows/AppSettings.cs @@ -8,6 +8,7 @@ public class AppSettings { public string CookieStore { get; set; } = ""; public string BurnHistory { get; set; } = ""; + public string OrgId { get; set; } = ""; public int RefreshInterval { get; set; } = 120; public bool ShowInTaskbar { get; set; } = true; public bool BetaChannel { get; set; } = false;