DiscordChatExporter/DiscordChatExporter.Core/Markdown/IContainerNode.cs
2023-08-22 21:17:19 +03:00

8 lines
172 B
C#

using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;
internal interface IContainerNode
{
IReadOnlyList<MarkdownNode> Children { get; }
}