mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
20 lines
435 B
C#
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();
|
|
}
|
|
} |