mirror of
https://github.com/tuxdotrs/highminded.git
synced 2025-08-22 23:51:03 +05:30
15 lines
348 B
C#
15 lines
348 B
C#
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>();
|
|
} |