mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-06 16:57:27 +08:00
9 lines
210 B
C#
9 lines
210 B
C#
namespace AquaMai.Config.Interfaces;
|
|
|
|
public interface IConfigSectionAttribute
|
|
{
|
|
IConfigComment Comment { get; }
|
|
bool ExampleHidden { get; }
|
|
bool DefaultOn { get; }
|
|
bool AlwaysEnabled { get; }
|
|
} |