lab2/lab1_PP/HighScore.cs
2024-10-14 11:12:14 +02:00

17 lines
284 B
C#

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; }
}
}