Files
nadekobot/src/NadekoBot/Common/Medusa/Config/MedusaConfig.cs

20 lines
435 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();
}
}