BotSharp/Platform.Dialogflow/Models/AIResponseStatus.cs
2018-10-02 20:44:11 -05:00

18 lines
338 B
C#

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