2018-03-21 21:07:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-03-28 22:08:49 +00:00
|
|
|
|
namespace BotSharp.Core.Models
|
2018-03-21 21:07:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class AIResponseStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ErrorType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ErrorDetails { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ErrorID { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|