[+] Config

This commit is contained in:
Azalea
2024-02-07 02:38:36 -05:00
parent dcdf951ebc
commit b403189afb
7 changed files with 56 additions and 7 deletions

15
AquaMai/Config.cs Normal file
View File

@@ -0,0 +1,15 @@
using System.Diagnostics.CodeAnalysis;
namespace AquaMai
{
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
public class Config
{
public UXConfig UX { get; set; }
public class UXConfig
{
public bool SkipWarningScreen { get; set; }
}
}
}