BotSharp/BotSharp.Platform.OwnThink/Models/AIResponseMetadata.cs
2019-03-16 23:50:33 -05:00

13 lines
259 B
C#

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