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

9 lines
194 B
C#
Raw Normal View History

2023-06-11 23:46:02 +00:00
namespace BotSharp.Core.Agents.ViewModels;
public class AgentUpdateModel
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}