You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DiscordChatExporter/DiscordChatExporter.Core/Markdown/Parsing/ParsedMatch.cs

14 lines
279 B

namespace DiscordChatExporter.Core.Markdown.Parsing;
internal class ParsedMatch<T>
{
public StringSegment Segment { get; }
public T Value { get; }
public ParsedMatch(StringSegment segment, T value)
{
Segment = segment;
Value = value;
}
}