11 lines
250 B
C#
11 lines
250 B
C#
|
namespace Ficdown.Parser.Model.Parser
|
|||
|
{
|
|||
|
internal class Anchor
|
|||
|
{
|
|||
|
public string Original { get; set; }
|
|||
|
public string Text { get; set; }
|
|||
|
public Href Href { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
}
|
|||
|
}
|