mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-16 07:59:54 +08:00
45 lines
780 B
C#
45 lines
780 B
C#
![]() |
|
|||
|
namespace Infrastructure.MVC
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 前端框架ajax错误返回
|
|||
|
/// </summary>
|
|||
|
public class UiResponse
|
|||
|
{
|
|||
|
public string statusCode
|
|||
|
{
|
|||
|
get; set;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public string message
|
|||
|
{
|
|||
|
get; set;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public string tabid
|
|||
|
{
|
|||
|
get; set;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public bool closeCurrent
|
|||
|
{
|
|||
|
get; set;
|
|||
|
|
|||
|
}
|
|||
|
public string forward { get; set; }
|
|||
|
public string forwardConfirm { get; set; }
|
|||
|
public UiResponse()
|
|||
|
{
|
|||
|
statusCode = "200";
|
|||
|
message = "操作成功";
|
|||
|
tabid = "";
|
|||
|
closeCurrent = false;
|
|||
|
forward = "";
|
|||
|
forwardConfirm = "";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|