BotSharp/BotSharp.Platform.Articulate/Models/EntitySynonymModel.cs
2019-03-16 11:34:32 -05:00

14 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class EntitySynonymModel
{
public string Value { get; set; }
public List<String> Synonyms { get; set; }
}
}