13 lines
284 B
C#
13 lines
284 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Platform.Dialogflow.Models
|
|
{
|
|
public class DialogflowIntentResponseMessage : AIResponseMessageBase
|
|
{
|
|
public Object Speech { get; set; }
|
|
public Object Payload { get; set; }
|
|
}
|
|
}
|