BotSharp/BotSharp.Core/Engines/AgentImportHeader.cs

22 lines
584 B
C#
Raw Normal View History

2018-07-19 01:56:17 +00:00
using BotSharp.Core.Agents;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class AgentImportHeader
{
public String Id { get; set; }
public String Name { get; set; }
public String UserId { get; set; }
public String ClientAccessToken { get; set; }
public String DeveloperAccessToken { get; set; }
2018-07-19 01:56:17 +00:00
/// <summary>
/// Integration with other social media platform
/// </summary>
public List<AgentIntegration> Integrations { get; set; }
}
}