Files
Fishing2Server/Hotfix/Api/Args/ErrorCode.cs
2026-04-01 16:40:34 +08:00

17 lines
231 B
C#

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