BotSharp/BotSharp.Platform.Articulate/Models/SlotModel.cs
2019-03-16 11:34:32 -05:00

20 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class SlotModel
{
public string Entity { get; set; }
public bool IsList { get; set; }
public bool IsRequired { get; set; }
public string SlotName { get; set; }
public List<String> TextPrompts { get; set; }
}
}