6 lines
144 B
C#
6 lines
144 B
C#
namespace Solicitors.HtmlParsing.Models;
|
|
|
|
internal class HtmlAttribute(string name) : IHtmlAttribute
|
|
{
|
|
public string Name { get; } = name;
|
|
} |