mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-22 18:52:44 +01:00
14 lines
226 B
C#
14 lines
226 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
[Serializable]
|
|
public class Player
|
|
{
|
|
public string Name { get; set; }
|
|
public int Score { get; set; }
|
|
}
|
|
}
|