BotSharp/BotSharp.Core/Models/Agents/AgentCreationViewModel.cs
2019-03-16 11:23:02 -05:00

14 lines
259 B
C#

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; }
}
}