13 lines
223 B
C#
13 lines
223 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Mesa_Backlog.Library.WorkItems;
|
|
|
|
public class Html
|
|
{
|
|
[JsonConstructor]
|
|
public Html(
|
|
string href
|
|
) => Href = href;
|
|
|
|
public string Href { init; get; }
|
|
} |