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

18 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Models
{
public class AIResponseStatus
{
public int Code { get; set; }
public string ErrorType { get; set; }
public string ErrorDetails { get; set; }
public string ErrorID { get; set; }
}
}