using System; using ETModel; namespace ETHotfix { [MessageHandler] public class C2R_PingHandler : AMRpcHandler { protected override async ETTask Run(Session session, C2R_Ping request, R2C_Ping response, Action reply) { reply(); await ETTask.CompletedTask; } } }