BotSharp/BotSharp.Core/Models/Agents/AgentCreationResponseModel.cs

16 lines
314 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
{
2019-03-17 04:50:33 +00:00
public class AgentCreationResponseModel
2019-03-16 16:23:02 +00:00
{
2019-03-17 04:50:33 +00:00
public string AgentId { get; set; }
2019-03-16 16:23:02 +00:00
public string Name { get; set; }
2019-03-17 04:50:33 +00:00
public string ClientAccessToken { get; set; }
2019-03-16 16:23:02 +00:00
}
}