2018-09-28 00:49:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-09-28 22:25:55 +00:00
|
|
|
|
namespace Platform.Articulate.Models
|
2018-09-28 00:49:43 +00:00
|
|
|
|
{
|
2018-09-30 15:11:36 +00:00
|
|
|
|
public class IntentScenarioViewModel : ScenarioModel
|
2018-09-28 00:49:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string Domain { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Agent { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Intent { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|