chore: change class names

This commit is contained in:
2025-11-29 23:00:44 +09:00
parent 1528cc3202
commit e30b81c440
12 changed files with 92 additions and 92 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
public class CommandSet
{
public string Type { get; set; }
public Dictionary<string, object> Params { get; set; } = new();
public List<Dictionary<string, string>> Choices { get; set; }
public string GetParam(string key, string defaultValue = "")
{
return Params.ContainsKey(key) ? Params[key].ToString() : defaultValue;
}
}