Initial commit.

This commit is contained in:
2025-12-11 10:20:10 +09:00
commit 057481803f
21 changed files with 1327 additions and 0 deletions

14
Models/AppConfigs.cs Normal file
View File

@@ -0,0 +1,14 @@
using Microsoft.Extensions.Options;
namespace TriliumMind.Models;
public class AppConfigs
{
public Dictionary<string, string> RuntimeConfigs;
public AppSettings AppSettings { get; set; }
public AppConfigs(IOptions<AppSettings> options)
{
RuntimeConfigs = new Dictionary<string, string>();
AppSettings = options.Value;
}
}