mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-05 17:42:36 +01:00
a6dea8efbc
* add some mods * refactor * user friendly home page added * refactor * update readme * update readme
15 lines
302 B
C#
15 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebInterface
|
|
{
|
|
public class ServerParameters
|
|
{
|
|
public string ApiKey { get; set; }
|
|
public int Players { get; set; }
|
|
public string ModName { get; set; }
|
|
}
|
|
}
|