BotSharp/BotSharp.Core/Engines/Articulate/EntityModel.cs
2018-09-27 19:49:43 -05:00

24 lines
480 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.Articulate
{
public class EntityModel
{
public int Id { get; set; }
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; }
}
}