BotSharp/BotSharp.Platform.Dialogflow/Models/AIResponseMetadata.cs

13 lines
261 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Dialogflow.Models
{
public class AIResponseMetadata
{
public string IntentId { get; set; }
public string IntentName { get; set; }
}
}