using System; using System.Collections.Generic; using System.Text; namespace 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 TextPrompts { get; set; } } }