liaoxujun@qq.com
2024-03-04 c8f9d5977cc950592f0ccfea01237eccde506350
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/***********************************************************************
 *            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);
    }
}