elliebot/src/EllieBot/_common/Patronage/PatronConfigData.cs

17 lines
479 B
C#
Raw Normal View History

2024-09-20 23:23:21 +12:00
using EllieBot.Common.Yml;
using Cloneable;
namespace EllieBot.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; }
2025-03-30 16:16:57 +13:00
[Comment("Quotas for patron system")]
public Dictionary<PatronTier, Dictionary<string, int>> Quotas { get; set; } = new();
2024-09-20 23:23:21 +12:00
}