BotSharp/Platform.Articulate/ViewModels/IntentViewModel.cs
2018-09-30 16:52:33 -05:00

24 lines
533 B
C#

using BotSharp.Platform.Models;
using Platform.Articulate.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.ViewModels
{
public class IntentViewModel : 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; }
}
}