You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ResponseEnum.cs

23 lines
532 B

using System.ComponentModel;
namespace Tiobon.Core.Model
{
public enum ResponseEnum
{
/// <summary>
/// 无权限
/// </summary>
[Description("无权限")]
NoPermissions = 401,
/// <summary>
/// 找不到指定资源
/// </summary>
[Description("找不到指定资源")]
NoFound = 404,
/// <summary>
/// 找不到指定资源
/// </summary>
[Description("服务器错误")]
ServerError = 500
}
}