2026-06-23 19:03:31 +01:00

6 lines
170 B
C#

namespace Solicitors.HtmlParsing.Models;
internal class HtmlValueAttribute(string name, string value) : HtmlAttribute(name)
{
public string Value { get; } = value;
}