14 lines
260 B
C#
14 lines
260 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Core.Engines.Articulate
|
|
{
|
|
public class EntitySynonymModel
|
|
{
|
|
public string Value { get; set; }
|
|
|
|
public List<String> Synonyms { get; set; }
|
|
}
|
|
}
|