[chore:] removed ArticleStore (wanted to do it another way)
This commit is contained in:
@@ -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<string> articles { get; set; } = new List<string>();
|
||||
}
|
||||
Reference in New Issue
Block a user