lab2/HighScore.cs
Marcin Badurowicz e5cb768ed1 initial
2024-10-11 12:09:17 +02:00

15 lines
261 B
C#

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