AquaDX/AquaMai/AquaMai.Config.Interfaces/IConfigSectionAttribute.cs

9 lines
210 B
C#

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