NBloodServerSupervisor/Model/Player.cs

14 lines
226 B
C#
Raw Normal View History

2020-01-23 21:03:54 +01:00
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; }
}
}