using System.Collections.Generic; namespace EZXR.Glass.Network.SocketIOClient.Arguments { public class OpenedArgs { public string Sid { get; set; } public List Upgrades { get; set; } public int PingInterval { get; set; } public int PingTimeout { get; set; } } }