9 lines
209 B
C#
9 lines
209 B
C#
|
|
namespace BotSharp.Abstraction.Instructs.Models;
|
||
|
|
|
||
|
|
public class InstructResponseModel
|
||
|
|
{
|
||
|
|
public string? AgentId { get; set; }
|
||
|
|
public string Provider { get; set; }
|
||
|
|
public string Model { get; set; }
|
||
|
|
}
|