using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace lab1_PP { //class HighScore internal class HighScore { public string Name { get; set; } public int Trials { get; set; } } }