lab4/HighScore.cs
Your Name b9a0d150b4 init
Creating a new project for something
2024-10-15 13:47:47 +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; }
}
}