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

9 lines
159 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Messaging.Models.RichContent
{
public class Recipient
{
2023-10-29 01:56:21 +00:00
public string Id { get; set; } = string.Empty;
}
}