BotSharp/Platform.Articulate/ViewModels/IntentScenarioViewModel.cs
2018-09-30 10:11:36 -05:00

16 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
{
public class IntentScenarioViewModel : ScenarioModel
{
public string Domain { get; set; }
public string Agent { get; set; }
public string Intent { get; set; }
}
}