12345678910111213141516171819 |
- using SuperSocket.SocketBase;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.tool.Server
- {
- public class RAppSession : AppSession<RAppSession, RRequestInfo>
- {
- public uint DeviceUDID;
- protected override void HandleException(Exception e)
- {
- }
- }
- }
|