elliebot/src/Ellie/Marmalade/Models/CanaryData.cs
Emotion e8fc5e7b93
Added Ellie.Marmalade into the main project
Signed-off-by: Emotion <emotion@emotionchild.com>
2023-08-24 01:10:42 +12:00

11 lines
No EOL
292 B
C#

namespace Ellie.Marmalade;
public sealed record CanaryInfo(
string Name,
CanaryInfo? Parent,
Canary Instance,
IReadOnlyCollection<CanaryCommandData> Commands,
IReadOnlyCollection<FilterAttribute> Filters)
{
public List<CanaryInfo> Subcanaries { get; set; } = new();
}