Files
nadekobot/src/NadekoBot/Common/Medusa/Config/MedusaConfig.cs
2022-04-17 09:58:30 +02:00

20 lines
428 B
C#

#nullable enable
using Cloneable;
using NadekoBot.Common.Yml;
namespace Nadeko.Medusa;
[Cloneable]
public sealed partial class MedusaConfig : ICloneable<MedusaConfig>
{
[Comment(@"DO NOT CHANGE")]
public int Version { get; set; } = 1;
[Comment("List of medusae automatically loaded at startup")]
public List<string>? Loaded { get; set; }
public MedusaConfig()
{
Loaded = new();
}
}