mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-29 06:10:54 +00:00
22 lines
493 B
C#
22 lines
493 B
C#
namespace DiscordChatExporter.Core.Markdown
|
|
{
|
|
public class LinkNode : Node
|
|
{
|
|
public string Url { get; }
|
|
|
|
public string Title { get; }
|
|
|
|
public LinkNode(string lexeme, string url, string title)
|
|
: base(lexeme)
|
|
{
|
|
Url = url;
|
|
Title = title;
|
|
}
|
|
|
|
public LinkNode(string lexeme, string url) : this(lexeme, url, url)
|
|
{
|
|
}
|
|
|
|
public override string ToString() => $"<Link> {Title}";
|
|
}
|
|
} |