10 lines
301 B
C#
10 lines
301 B
C#
|
namespace Bunny.Dao.Common.Constant.Result;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 发生时的错误敞亮
|
|||
|
/// </summary>
|
|||
|
public static class ErrorConstant
|
|||
|
{
|
|||
|
public static readonly string InternalServerError = "服务器错误";
|
|||
|
public static readonly string ValidateCodeError = "输入验证码错误";
|
|||
|
}
|