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