using System.Text.Json.Serialization; namespace Mesa_Backlog.Library.WorkItems; public class WorkItemUpdates { [JsonConstructor] public WorkItemUpdates( string href ) => Href = href; public string Href { init; get; } }