2026-06-24 14:25:32 +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;
}