BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/ChannelInstruction.cs

8 lines
167 B
C#
Raw Normal View History

2024-08-13 21:36:12 +00:00
namespace BotSharp.Abstraction.Agents.Models;
public class ChannelInstruction
{
public string Channel { get; set; }
public string Instruction { get; set; }
}