lab1/HighScore.cs
Marcin Badurowicz 8ce1137eb7 initial
2024-10-11 10:32:33 +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; }
}
}