servicepoint-tanks/TanksServer/Models/Player.cs
2024-04-13 18:35:36 +02:00

17 lines
369 B
C#

using System.Text.Json.Serialization;
namespace TanksServer.Models;
internal sealed class Player(string name, Guid id)
{
public string Name => name;
[JsonIgnore] public Guid Id => id;
[JsonIgnore] public PlayerControls Controls { get; } = new();
public Scores Scores { get; } = new();
public DateTime LastInput { get; set; } = DateTime.Now;
}