BotSharp/BotSharp.Platform.Models/Agents/ImportedAgentViewModel.cs
haiping008 9becfe5fde ImportedAgentViewModel
response more info after agent is imported.
2018-12-07 12:56:54 -06:00

18 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.Agents
{
public class ImportedAgentViewModel
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string ClientAccessToken { get; set; }
}
}