mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-24 11:04:04 +01:00
15 lines
304 B
C#
15 lines
304 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 bool IsBroadcast { get; set; }
|
|
}
|
|
}
|