mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Read about the medusa system [here](https://nadekobot.readthedocs.io/en/latest/medusa/creating-a-medusa/)
11 lines
280 B
C#
11 lines
280 B
C#
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();
|
|
} |