Ready to beta test

This commit is contained in:
2022-08-26 15:40:05 -07:00
parent 121c0c4d0c
commit b3e643c221
90 changed files with 5023 additions and 20 deletions

View 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; }
}