[chore:] removed ArticleStore (wanted to do it another way)

This commit is contained in:
Elias Fierke
2026-01-13 20:45:49 +01:00
parent 4e1f08883a
commit f4918aa8ee

View File

@@ -10,7 +10,6 @@ public class Settings
public static Settings _instance = new(); public static Settings _instance = new();
public AddressSets addressSets = new(); public AddressSets addressSets = new();
public Customers customers = new(); public Customers customers = new();
public ArticleStore articles = new ArticleStore();
public string settingsPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), public string settingsPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"logofclient", "config.json"); "logofclient", "config.json");
@@ -183,10 +182,4 @@ public class Country
return null; return null;
} }
}
public class ArticleStore
{
// Placeholder for article metadata; actual content is stored as markdown files
public List<string> articles { get; set; } = new List<string>();
} }