BotSharp/Platform.Dialogflow/Models/AIResponseMetadata.cs

13 lines
252 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace Platform.Dialogflow.Models
{
public class AIResponseMetadata
{
public string IntentId { get; set; }
public string IntentName { get; set; }
}
}