namespace BotSharp.Abstraction.Conversations.Models; public class RoleDialogModel { /// /// user, system, assistant /// public string Role { get; set; } public string Text { get; set; } public override string ToString() { return $"{Role}: {Text}"; } }