Files
Fishing2Server/Entity/LockType.cs
2025-07-16 17:47:53 +08:00

9 lines
220 B
C#

namespace Fantasy;
public enum LockType
{
None = 0,
AuthenticationRegisterLock = 1, // 鉴权注册锁
AuthenticationRemoveLock = 1, // 鉴权移除锁
AuthenticationLoginLock = 2 // 鉴权登录锁
}