using System.Collections.Generic; using System.Text.Json.Serialization; namespace SkiaSharpGenerator { public class Exclude { [JsonPropertyName("files")] public List Files { get; set; } = new List(); [JsonPropertyName("types")] public List Types { get; set; } = new List(); } }