BotSharp/Bot.Rasa/Models/UserSay.cs

13 lines
222 B
C#
Raw Normal View History

2017-12-18 13:31:15 +00:00
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; }
}
}