forked from Cookies_Github_mirror/AquaDX
15 lines
335 B
C#
15 lines
335 B
C#
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; }
|
|
}
|
|
}
|
|
} |