BotSharp/BotSharp.Core/Models/AIResponseStatus.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -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; }
}
}