using System.Collections.Generic; using System.Text.Json.Serialization; namespace SkiaSharpGenerator { public class FunctionMapping { [JsonPropertyName("cs")] public string? CsType { get; set; } [JsonPropertyName("parameters")] public Dictionary Parameters { get; set; } = new Dictionary(); } }