From d22eb7381c3bb7315028c239ae7e31d9c510ea53 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 15:05:26 +0200 Subject: [PATCH] feat: add Email and UsageJson cache fields --- windows/AppSettings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/AppSettings.cs b/windows/AppSettings.cs index 9c993ed..040a189 100644 --- a/windows/AppSettings.cs +++ b/windows/AppSettings.cs @@ -9,6 +9,8 @@ public class AppSettings public string CookieStore { get; set; } = ""; public string BurnHistory { get; set; } = ""; public string OrgId { get; set; } = ""; + public string Email { get; set; } = ""; + public string UsageJson { get; set; } = ""; public int RefreshInterval { get; set; } = 120; public bool ShowInTaskbar { get; set; } = true; public bool BetaChannel { get; set; } = false;