Files
Quadraludi/LobbyServer/ScoreEntry.cs
2019-05-03 20:24:02 +02:00

26 lines
554 B
C#

namespace LobbyServer
{
public class ScoreEntry
{
public string Pseudo { get; }
public int Score { get; }
public ScoreEntry(string pseudo, int score)
{
Pseudo = pseudo;
Score = score;
}
public ScoreEntry(string serialized)
{
var split = serialized.Split(';');
Pseudo = split[0];
Score = int.Parse(split[1]);
}
public override string ToString()
{
return $"{Pseudo};{Score}";
}
}
}