BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/ChatAnnotation.cs

10 lines
238 B
C#
Raw Normal View History

2025-08-19 18:37:34 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class ChatAnnotation
{
public string Title { get; set; }
public string Url { get; set; }
public int StartIndex { get; set; }
public int EndIndex { get; set; }
}