mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Renamed the bot from KickBot -> ChatBot and removed the reference to Kick in the project name
This commit is contained in:
13
KfChatDotNetBot/Models/BuiltInSettingsModel.cs
Normal file
13
KfChatDotNetBot/Models/BuiltInSettingsModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace KfChatDotNetBot.Models;
|
||||
|
||||
public class BuiltInSettingsModel
|
||||
{
|
||||
// Model here largely maps to what's in SettingDbModel, the idea is that there's a set of built-in settings that get
|
||||
// populated when migrating old JSON configs and updated on start if there's a schema change (e.g. regex changed)
|
||||
public required string Key { get; set; }
|
||||
public required string Regex { get; set; }
|
||||
public required string Description { get; set; }
|
||||
public string? Default { get; set; }
|
||||
public required bool IsSecret { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user