Files
ww-jst/wmsjst/JSMachine.WMS.Netty/NettyUdp/Command/HeartBeartCmd.cs
T

11 lines
245 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
namespace JSMachine.WMS.Netty.NettyUdp.Command
{
/// <summary>
/// 心跳
/// </summary>
public class HeartBeartCmd : BaseCmd
{
public override CommandType ComType { get; set; } = CommandType.g_eKeepAlive;
}
}