OpenedArgs.cs 321 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace EZXR.Glass.Network.SocketIOClient.Arguments
  3. {
  4. public class OpenedArgs
  5. {
  6. public string Sid { get; set; }
  7. public List<string> Upgrades { get; set; }
  8. public int PingInterval { get; set; }
  9. public int PingTimeout { get; set; }
  10. }
  11. }