From f4918aa8ee4343e54962c64120454909b8988b35 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 13 Jan 2026 20:45:49 +0100 Subject: [PATCH] [chore:] removed ArticleStore (wanted to do it another way) --- Settings.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Settings.cs b/Settings.cs index f7f9d6c..b5956be 100644 --- a/Settings.cs +++ b/Settings.cs @@ -10,7 +10,6 @@ public class Settings public static Settings _instance = new(); public AddressSets addressSets = new(); public Customers customers = new(); - public ArticleStore articles = new ArticleStore(); public string settingsPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "logofclient", "config.json"); @@ -183,10 +182,4 @@ public class Country return null; } -} - -public class ArticleStore -{ - // Placeholder for article metadata; actual content is stored as markdown files - public List articles { get; set; } = new List(); } \ No newline at end of file