/***********************************************************************
|
* Project: CoreCms.Net *
|
* Web: https://CoreCms.Net *
|
* ProjectName: 百分兵法管理系统 *
|
* Author: *
|
* Email: *
|
* CreateTime: 2020-03-18 3:18:36
|
* Description: 暂无
|
***********************************************************************/
|
|
namespace CoreCms.Net.Model.ViewModels.UI
|
{
|
/// <summary>
|
/// 错误返回示例
|
/// </summary>
|
public class ErrorViewModel
|
{
|
/// <summary>
|
/// 回调序列
|
/// </summary>
|
public string RequestId { get; set; }
|
|
/// <summary>
|
/// 显示回调序列
|
/// </summary>
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
}
|
}
|