Files
AquaDX/AquaMai/AquaMai.Config.Interfaces/IConfigSectionAttribute.cs
2024-11-26 00:03:35 +08:00

9 lines
210 B
C#

namespace AquaMai.Config.Interfaces;
public interface IConfigSectionAttribute
{
IConfigComment Comment { get; }
bool ExampleHidden { get; }
bool DefaultOn { get; }
bool AlwaysEnabled { get; }
}