BotSharp/Platform.Dialogflow/Models/AIResponseMessageBase.cs

13 lines
251 B
C#
Raw Normal View History

2018-10-03 01:44:11 +00:00
using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace Platform.Dialogflow.Models
{
public class AIResponseMessageBase
{
public AIResponseMessageType Type { get; set; }
}
}