using System.Collections.Generic; using Newtonsoft.Json; namespace Contentless; public class Config { [JsonProperty("exclude")] public string[] ExcludedFiles = {"bin/", "obj/"}; [JsonProperty("logSkipped")] public bool LogSkipped = true; [JsonProperty("overrides")] public Dictionary Overrides = new(); } public class Override { [JsonProperty("importer")] public string Importer; [JsonProperty("processor")] public string Processor; [JsonProperty("processorParams")] public Dictionary ProcessorParams = new(); [JsonProperty("copy")] public bool Copy; }