RAppSession.cs 379 B

12345678910111213141516171819
  1. using SuperSocket.SocketBase;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace athosRT.tool.Server
  8. {
  9. public class RAppSession : AppSession<RAppSession, RRequestInfo>
  10. {
  11. public uint DeviceUDID;
  12. protected override void HandleException(Exception e)
  13. {
  14. }
  15. }
  16. }