Contentless/Contentless/Config.cs

16 lines
377 B
C#
Raw Normal View History

2019-10-08 19:27:42 +02:00
using Newtonsoft.Json;
namespace Contentless {
public class Config {
[JsonProperty(PropertyName = "exclude")]
public string[] ExcludedFiles = {"bin/", "obj/"};
[JsonProperty(PropertyName = "logSkipped")]
public bool LogSkipped = true;
2019-10-28 23:43:48 +01:00
[JsonProperty(PropertyName = "overrides")]
public string[][] Overrides = { };
2019-10-08 19:27:42 +02:00
}
}