BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/Recipient.cs

7 lines
140 B
C#
Raw Normal View History

2023-12-18 22:38:12 +00:00
namespace BotSharp.Abstraction.Messaging.Models.RichContent;
2023-12-18 22:38:12 +00:00
public class Recipient
{
2023-12-18 22:38:12 +00:00
public string Id { get; set; } = string.Empty;
}