using System.Collections.Generic; using System.Text.Json.Serialization; namespace SkiaSharpGenerator { public class Mappings { [JsonPropertyName("types")] public Dictionary Types { get; set; } = new Dictionary(); [JsonPropertyName("functions")] public Dictionary Functions { get; set; } = new Dictionary(); } }