Contentless/Contentless/Config.cs
2019-10-30 23:59:47 +01:00

17 lines
456 B
C#

using System.Collections.Generic;
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 Dictionary<string, string> Overrides = new Dictionary<string, string>();
}
}