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

5 lines
160 B
C#

using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;
internal record ListNode(IReadOnlyList<ListItemNode> Items) : MarkdownNode;