// *********************************************************************** // Assembly : OpenAuth.Mvc // Author : yubaolee // Created : 11-05-2015 // // Last Modified By : yubaolee // Last Modified On : 11-05-2015 // *********************************************************************** // // Copyright (c) www.cnblogs.com/yubaolee. All rights reserved. // // B-JUI框架返回 // *********************************************************************** 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 = ""; } } }