using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class ScenarioModel
{
///
/// Guid
///
[StringLength(36)]
public String Id { get; set; }
public string ScenarioName { get; set; }
public List IntentResponses { get; set; }
public List Slots { get; set; }
}
}