17 lines
284 B
C#
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; }
|
|
|
|
}
|
|
}
|