BotSharp/Platform.Articulate/Models/IntentModel.cs
2018-09-30 10:11:36 -05:00

26 lines
567 B
C#

using BotSharp.Platform.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
{
public class IntentModel : IntentBase
{
public string IntentName { get; set; }
public string Agent { get; set; }
public string Domain { get; set; }
public bool UsePostFormat { get; set; }
public bool UseWebhook { get; set; }
public List<IntentExampleModel> Examples { get; set; }
public ScenarioModel Scenario { get; set; }
}
}