Files

11 lines
245 B
C#
Raw Permalink 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;
}
}