BotSharp/Platform.Articulate/ViewModels/IntentScenarioViewModel.cs
2018-09-29 13:18:34 -05:00

22 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
{
public class IntentScenarioViewModel
{
public string Domain { get; set; }
public string Agent { get; set; }
public string Intent { get; set; }
public string ScenarioName { get; set; }
public List<String> IntentResponses { get; set; }
public List<SlotModel> Slots { get; set; }
}
}