using System.Text.Json.Serialization; namespace qmonlib { [Serializable] public class MonGeneral { [JsonPropertyName("iid")] public string InstanceIdentifier { get; set; } public List Items { get; set; } = new List(); } }