2023-01-24 08:45:13 -07:00

13 lines
249 B
C#

using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.json.WorkItems;
public class Html
{
[JsonConstructor]
public Html(
string href
) => Href = href;
public string Href { get; set; } // { init; get; }
}