8 lines
167 B
C#
8 lines
167 B
C#
namespace BotSharp.Abstraction.Agents.Models;
|
|
|
|
public class ChannelInstruction
|
|
{
|
|
public string Channel { get; set; }
|
|
public string Instruction { get; set; }
|
|
}
|