PluralKit/PluralKit.Bot/BotConfig.cs

17 lines
624 B
C#
Raw Normal View History

namespace PluralKit.Bot
{
public class BotConfig
{
2020-08-25 17:32:19 +00:00
public static readonly string[] DefaultPrefixes = {"pk;", "pk!"};
public string Token { get; set; }
public ulong? ClientId { get; set; }
2020-08-25 17:32:19 +00:00
// ASP.NET configuration merges arrays with defaults, so we leave this field nullable
// and fall back to the separate default array at the use site :)
// This does bind [] as null (therefore default) instead of an empty array, but I can live w/ that.
public string[] Prefixes { get; set; }
public int? MaxShardConcurrency { get; set; }
}
}