using System.Collections.ObjectModel; namespace Adaptation.FileHandlers.json.WorkItems; public class Record { #nullable enable public Record(WorkItem workItem, ReadOnlyDictionary children) { WorkItem = workItem; Children = children; } public WorkItem WorkItem { get; set; } public ReadOnlyDictionary Children { get; set; } }