BotSharp/Platform.Articulate/Models/ScenarioModel.cs

23 lines
489 B
C#
Raw Normal View History

2018-09-30 15:11:36 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Platform.Articulate.Models
{
public class ScenarioModel
{
/// <summary>
/// Guid
/// </summary>
[StringLength(36)]
public String Id { get; set; }
public string ScenarioName { get; set; }
public List<String> IntentResponses { get; set; }
public List<SlotModel> Slots { get; set; }
}
}