Ready to beta test
This commit is contained in:
13
classlib/WorkItems/Html.cs
Normal file
13
classlib/WorkItems/Html.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
Reference in New Issue
Block a user