13 lines
260 B
C#
13 lines
260 B
C#
using BotSharp.Platform.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Platform.Dialogflow.Models
|
|
{
|
|
public class AIResponseMessageBase
|
|
{
|
|
public AIResponseMessageType Type { get; set; }
|
|
}
|
|
}
|