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