namespace API.Models.Game { public class GameInformationDto { public string Id { get; set; } public List Players { get; set; } public GameState? State { get; set; } public int[][] CurrentField { get; set; } public int CurrentTurn { get; set; } } }