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

17 lines
492 B
C#

using NadekoBot.Common.Yml;
using Cloneable;
namespace NadekoBot.Modules.Patronage;
[Cloneable]
public partial class PatronConfigData : ICloneable<PatronConfigData>
{
[Comment("DO NOT CHANGE")]
public int Version { get; set; } = 3;
[Comment("Whether the patronage feature is enabled")]
public bool IsEnabled { get; set; }
[Comment("Who can do how much of what")]
public Dictionary<int, Dictionary<LimitedFeatureName, QuotaLimit>> Limits { get; set; } = new();
}