BotSharp/Platform.Articulate/Models/EntityModel.cs

24 lines
519 B
C#
Raw Normal View History

2018-09-29 18:18:34 +00:00
using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System;
2018-09-28 00:49:43 +00:00
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
2018-09-28 00:49:43 +00:00
{
2018-09-29 18:18:34 +00:00
public class EntityModel : EntityBase
2018-09-28 00:49:43 +00:00
{
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; }
}
}