BotSharp/Infrastructure/BotSharp.Core/Models/TrainingEntitySynonym.cs
2023-05-20 10:20:37 -05:00

14 lines
255 B
C#

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