Files
Memory/Memory.Logic/Score.cs
2024-11-06 21:46:37 +01:00

9 lines
184 B
C#

namespace Memory.Logic
{
public class Score(string name, int points)
{
public string Name { get; } = name;
public int Points { get; set; } = points;
}
}