BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/Recipient.cs
2023-12-18 16:38:12 -06:00

7 lines
140 B
C#

namespace BotSharp.Abstraction.Messaging.Models.RichContent;
public class Recipient
{
public string Id { get; set; } = string.Empty;
}