BotSharp/BotSharp.Core/Models/Agents/AgentCreationResponseModel.cs
2019-03-16 23:50:33 -05:00

16 lines
314 B
C#

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