RegexBot/Modules/PendingOutRole/ModuleConfig.cs

17 lines
544 B
C#
Raw Normal View History

2022-04-23 20:01:27 +00:00
using RegexBot.Common;
namespace RegexBot.Modules.PendingOutRole;
class ModuleConfig {
public EntityName Role { get; }
public ModuleConfig(JObject conf) {
try {
Role = new EntityName(conf[nameof(Role)]?.Value<string>()!, EntityType.Role);
} catch (ArgumentException) {
throw new ModuleLoadException("Role was not properly specified.");
} catch (FormatException) {
throw new ModuleLoadException("Name specified in configuration is not a role.");
}
2022-04-23 20:01:27 +00:00
}
}