Contentless/Contentless/Config.cs
2019-10-28 23:43:48 +01:00

16 lines
377 B
C#

using Newtonsoft.Json;
namespace Contentless {
public class Config {
[JsonProperty(PropertyName = "exclude")]
public string[] ExcludedFiles = {"bin/", "obj/"};
[JsonProperty(PropertyName = "logSkipped")]
public bool LogSkipped = true;
[JsonProperty(PropertyName = "overrides")]
public string[][] Overrides = { };
}
}