made properties readonly

This commit is contained in:
Chomp
2025-06-28 12:53:21 +01:00
parent 42e79c981b
commit da5644cfa2
63 changed files with 119 additions and 102 deletions
@@ -27,8 +27,8 @@ public class DialogueController(
IEnumerable<IDialogueChatBot> dialogueChatBots
)
{
protected CoreConfig _coreConfig = _configServer.GetConfig<CoreConfig>();
protected List<IDialogueChatBot> _dialogueChatBots = dialogueChatBots.ToList();
protected readonly CoreConfig _coreConfig = _configServer.GetConfig<CoreConfig>();
protected readonly List<IDialogueChatBot> _dialogueChatBots = dialogueChatBots.ToList();
/// <summary>
/// </summary>