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

7 lines
150 B
C#

namespace AquaMai.Config.Interfaces;
public interface IConfigEntryAttribute
{
IConfigComment Comment { get; }
bool HideWhenDefault { get; }
}