public PlayerInfoDto(PlayerInfoShortDto info, PlayerLocationDto location)
 {
     Info     = info;
     Location = location;
 }
 public PlayerInfoDto()
 {
     Info     = new PlayerInfoShortDto();
     Location = new PlayerLocationDto();
 }