ex-rep-02/Highscore/Model.cs
github-classroom[bot] 962f0fd813
Initial commit
2024-09-12 13:40:11 +00:00

4 lines
No EOL
137 B
C#

namespace Highscore;
public record Player(int Id, string NickName);
public record GameScore(Player Player, int Score, DateTime Date);