16 lines
320 B
C#
16 lines
320 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Platform.Articulate.Models
|
|||
|
|
{
|
|||
|
|
public class IntentScenarioViewModel : ScenarioModel
|
|||
|
|
{
|
|||
|
|
public string Domain { get; set; }
|
|||
|
|
|
|||
|
|
public string Agent { get; set; }
|
|||
|
|
|
|||
|
|
public string Intent { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|