BotSharp/Platform.Articulate/Models/EntitySynonymModel.cs

14 lines
254 B
C#
Raw Normal View History

2018-09-28 00:49:43 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
2018-09-28 00:49:43 +00:00
{
public class EntitySynonymModel
{
public string Value { get; set; }
public List<String> Synonyms { get; set; }
}
}