BotSharp/BotSharp.Core/Engines/Dialogflow/AIResponseMetadata.cs
2018-06-14 07:01:17 -05:00

13 lines
246 B
C#

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