aspnetcore/samples/SocketsSample/Hubs/Person.cs

14 lines
249 B
C#

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; }
}
}