summaryrefslogtreecommitdiff
path: root/DSALib/Models/Network/User.cs
blob: 314a0bfa68a7584d1764912a70100e0803efb354 (plain)
1
2
3
4
5
6
7
8
9
namespace DSALib.Models.Network
{
    public class User
    {
        public string Name { get; set; }
        public string ConnectionId { get; set; }
        public int Char { get; set; }
    }
}