Files
nadekobot/src/NadekoBot/_common/Patronage/FeatureLimitKey.cs
Kwoth ab93380d7c 5.1
2024-06-13 18:54:21 +00:00

14 lines
248 B
C#

namespace NadekoBot.Modules.Patronage;
public enum LimitedFeatureName
{
ChatBot,
ReactionRole,
Prune,
}
public readonly struct FeatureLimitKey
{
public string PrettyName { get; init; }
public string Key { get; init; }
}