BotSharp/BotSharp.Core/Models/Agents/ImportedAgentViewModel.cs

18 lines
354 B
C#
Raw Normal View History

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