BotSharp/BotSharp.Core/Engines/Articulate/SlotModel.cs
2018-09-27 19:49:43 -05:00

20 lines
389 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.Articulate
{
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; }
}
}