mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
11 lines
283 B
C#
11 lines
283 B
C#
namespace NadekoBot.Medusa;
|
|
|
|
public sealed record SnekInfo(
|
|
string Name,
|
|
SnekInfo? Parent,
|
|
Snek Instance,
|
|
IReadOnlyCollection<SnekCommandData> Commands,
|
|
IReadOnlyCollection<FilterAttribute> Filters)
|
|
{
|
|
public List<SnekInfo> Subsneks { get; set; } = new();
|
|
} |