using System.Text.Json.Serialization;

namespace Adaptation.FileHandlers.json.WorkItems;

public class Html
{
    [JsonConstructor]
    public Html(
        string href
    ) => Href = href;

    public string Href { get; } // { init; get; }
}