BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/ChatAnnotation.cs
2025-08-19 13:37:34 -05:00

10 lines
238 B
C#

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; }
}