9 lines
184 B
C#
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;
|
|
}
|
|
}
|