mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
Gambling moved to a separate project. Project builds
This commit is contained in:
11
src/NadekoBot/Medusa/Models/SnekData.cs
Normal file
11
src/NadekoBot/Medusa/Models/SnekData.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Nadeko.Medusa;
|
||||
|
||||
public sealed record SnekInfo(
|
||||
string Name,
|
||||
SnekInfo? Parent,
|
||||
Snek Instance,
|
||||
IReadOnlyCollection<SnekCommandData> Commands,
|
||||
IReadOnlyCollection<FilterAttribute> Filters)
|
||||
{
|
||||
public List<SnekInfo> Subsneks { get; set; } = new();
|
||||
}
|
Reference in New Issue
Block a user