mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-19 18:22:11 +08:00
完成添加
This commit is contained in:
57
OpenAuth.Mvc/Models/BJUIResponse.cs
Normal file
57
OpenAuth.Mvc/Models/BJUIResponse.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : OpenAuth.Mvc
|
||||
// Author : yubaolee
|
||||
// Created : 11-05-2015
|
||||
//
|
||||
// Last Modified By : yubaolee
|
||||
// Last Modified On : 11-05-2015
|
||||
// ***********************************************************************
|
||||
// <copyright file="BJUIResponse.cs" company="www.cnblogs.com/yubaolee">
|
||||
// Copyright (c) www.cnblogs.com/yubaolee. All rights reserved.
|
||||
// </copyright>
|
||||
// <summary>B-JUI框架返回</summary>
|
||||
// ***********************************************************************
|
||||
|
||||
namespace OpenAuth.Mvc.Models
|
||||
{
|
||||
public class BjuiResponse
|
||||
{
|
||||
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 BjuiResponse()
|
||||
{
|
||||
statusCode = "200";
|
||||
message = "操作成功";
|
||||
tabid = "";
|
||||
closeCurrent = false;
|
||||
forward = "";
|
||||
forwardConfirm = "";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user