mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-02-12 19:50:40 +01:00
![CommonLoon102](/assets/img/avatar_default.png)
* add some mods * refactor * user friendly home page added * refactor * update readme * update readme
14 lines
244 B
C#
14 lines
244 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebInterface
|
|
{
|
|
public class Player
|
|
{
|
|
public string Name { get; set; }
|
|
public int Score { get; set; }
|
|
}
|
|
}
|