mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 16:19:12 +00:00
12 lines
219 B
C#
12 lines
219 B
C#
namespace DiscordChatExporter.Core.Markdown
|
|
{
|
|
public abstract class Node
|
|
{
|
|
public string Lexeme { get; }
|
|
|
|
protected Node(string lexeme)
|
|
{
|
|
Lexeme = lexeme;
|
|
}
|
|
}
|
|
} |