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; }
    }
}