Files
nadekobot/src/NadekoBot/_common/Medusa/Common/Models/SnekData.cs
2024-04-27 22:45:14 +00:00

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();
}