using System.Collections.Generic; namespace LinkToolAddin.message; public class ToolMessageItem : MessageListItem { public string id { get; set; } public string role { get; set; } public string content { get; set; } public string toolName { get; set; } public Dictionary toolParams { get; set; } public MessageType type { get; set; } public string status { get; set; } public string result { get; set; } }