BotSharp/Platform.Articulate/ViewModels/IntentScenarioViewModel.cs

22 lines
456 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
{
2018-09-29 18:18:34 +00:00
public class IntentScenarioViewModel
2018-09-28 00:49:43 +00:00
{
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; }
}
}