BotSharp/Platform.Articulate/Models/EntityModel.cs
2018-09-30 10:11:36 -05:00

24 lines
519 B
C#

using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace 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; }
}
}