Contentless/Contentless/Config.cs

18 lines
484 B
C#
Raw Normal View History

2019-10-30 23:59:47 +01:00
using System.Collections.Generic;
2019-10-08 19:27:42 +02:00
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
2019-10-08 19:27:42 +02:00
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 Dictionary<string, JToken> Overrides = new Dictionary<string, JToken>();
2019-10-28 23:43:48 +01:00
2019-10-08 19:27:42 +02:00
}
}