BotSharp/BotSharp.Core/Models/Agents/AgentCreationViewModel.cs

14 lines
259 B
C#
Raw Normal View History

2019-03-16 16:23:02 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.Agents
{
public class AgentCreationViewModel
{
public string Name { get; set; }
public string Description { get; set; }
}
}