BotSharp/Bot.Rasa/Models/UserSay.cs

20 lines
408 B
C#
Raw Normal View History

2017-12-30 20:26:35 +00:00
using Bot.Rasa.Expressions;
using System;
2017-12-18 13:31:15 +00:00
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.Models
{
public class UserSay
{
2017-12-30 20:26:35 +00:00
public UserSay()
{
Entities = new List<EntitiyOfSpeech>();
}
2017-12-18 13:31:15 +00:00
public String Text { get; set; }
public String Intent { get; set; }
2017-12-30 20:26:35 +00:00
public List<EntitiyOfSpeech> Entities { get; set; }
2017-12-18 13:31:15 +00:00
}
}