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