13 lines
293 B
C#
13 lines
293 B
C#
|
|
using BotSharp.Platform.Models.Agents;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Platform.OwnThink.ViewModels
|
|||
|
|
{
|
|||
|
|
public class AgentCreationResponseViewModel : AgentCreationResponseModel
|
|||
|
|
{
|
|||
|
|
public string AppId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|