Logging, Configuration

This commit is contained in:
2022-02-04 15:10:36 +01:00
parent f9c675eb7c
commit bca940372a
9 changed files with 157 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace FileTime.Avalonia.Configuration
{
public static class MainConfiguration
{
public static readonly Dictionary<string, string> Configuration = new();
}
}