mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
Gambling moved to a separate project. Project builds
This commit is contained in:
20
src/NadekoBot/Medusa/Config/MedusaConfig.cs
Normal file
20
src/NadekoBot/Medusa/Config/MedusaConfig.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
#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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user