10 lines
238 B
C#
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; }
|
|
}
|