forked from Cookies_Github_mirror/AquaDX
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; }
|
|
} |