BotSharp/BotSharp.Platform.Articulate/Models/EntityModel.cs

23 lines
491 B
C#
Raw Normal View History

2019-03-17 00:55:55 +00:00
using BotSharp.Platform.Models;
2019-03-16 16:34:32 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class EntityModel : EntityBase
{
public string Regex { get; set; }
public string Agent { get; set; }
public string EntityName { get; set; }
public string Type { get; set; }
public string UiColor { get; set; }
public List<EntitySynonymModel> Examples { get; set; }
}
}