20 lines
418 B
C#
20 lines
418 B
C#
using Bot.Rasa.Expressions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Bot.Rasa.Models
|
|
{
|
|
public class UserSay
|
|
{
|
|
public UserSay()
|
|
{
|
|
Entities = new List<IntentExpressionPart>();
|
|
}
|
|
|
|
public String Text { get; set; }
|
|
public String Intent { get; set; }
|
|
public List<IntentExpressionPart> Entities { get; set; }
|
|
}
|
|
}
|