mirror of
https://github.com/tuxdotrs/highminded.git
synced 2025-08-23 08:01:03 +05:30
feat: initial commit
This commit is contained in:
15
utils/InMemoryDB.cs
Normal file
15
utils/InMemoryDB.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Path = Avalonia.Controls.Shapes.Path;
|
||||
|
||||
namespace highminded.utils;
|
||||
|
||||
public class InMemoryDb
|
||||
{
|
||||
// Initialize Singleton Class
|
||||
InMemoryDb() { }
|
||||
|
||||
public static readonly InMemoryDb Obj = new InMemoryDb();
|
||||
|
||||
public SettingsManager<AppSettings> settingsManager = new SettingsManager<AppSettings>();
|
||||
}
|
Reference in New Issue
Block a user