BotSharp/BotSharp.Core/Engines/Articulate/IntentModel.cs
2018-09-27 19:49:43 -05:00

24 lines
489 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.Articulate
{
public class IntentModel
{
public int Id { get; set; }
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; }
}
}