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

16 lines
265 B
C#

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