身份验证

This commit is contained in:
Bob.Song
2026-04-01 16:40:34 +08:00
parent d5dafd2bcf
commit b628f0d04a
17 changed files with 590 additions and 101 deletions

View File

@@ -0,0 +1,17 @@
namespace NBF;
public enum ErrorCode
{
/// <summary>
/// 成功
/// </summary>
Success = 0,
ArgsError = 1,
Busy = 2,
/// <summary>
/// 安装包不存在
/// </summary>
AppNotFound = 404
}