BotSharp/src/Infrastructure/BotSharp.Core/Agents/ViewModels/AgentCreationModel.cs

19 lines
357 B
C#
Raw Normal View History

2023-06-11 23:46:02 +00:00
using BotSharp.Abstraction.Agents.Models;
namespace BotSharp.Core.Agents.ViewModels;
public class AgentCreationModel
{
public string Name { get; set; }
public string Description { get; set; }
public Agent ToAgent()
{
return new Agent
{
Name = Name,
Description = Description
};
}
}