BotSharp/BotSharp.Platform.Models/TrainingEntity.cs

14 lines
257 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models
{
public class TrainingEntity
{
public virtual String Entity { get; set; }
public List<String> Synonyms { get; set; }
}
}