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