7 lines
133 B
C#
7 lines
133 B
C#
namespace API.Models.Game;
|
|
|
|
public class Player
|
|
{
|
|
public string Name { get; set; }
|
|
public string ConnectionId { get; set; }
|
|
} |