BotSharp/Bot.Rasa/Models/UserSay.cs
2017-12-18 07:31:15 -06:00

13 lines
222 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.Models
{
public class UserSay
{
public String Text { get; set; }
public String Intent { get; set; }
}
}