BotSharp/BotSharp.Platform.Dialogflow/Models/AIResponseStatus.cs
2018-10-28 21:16:55 -05:00

18 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.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; }
}
}