BotSharp/Platform.Articulate/Models/IntentModel.cs

24 lines
483 B
C#
Raw Normal View History

2018-09-28 00:49:43 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
2018-09-28 00:49:43 +00:00
{
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; }
}
}