mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
13 lines
301 B
C#
13 lines
301 B
C#
using Nadeko.Snake;
|
|
|
|
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();
|
|
} |