BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/ChannelInstruction.cs
2024-08-13 16:36:12 -05:00

8 lines
167 B
C#

namespace BotSharp.Abstraction.Agents.Models;
public class ChannelInstruction
{
public string Channel { get; set; }
public string Instruction { get; set; }
}