using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SocketsSample.Hubs { public class Person { public string Name { get; set; } public long Age { get; set; } } }