20 lines
392 B
C#
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; }
|
|
}
|
|
}
|