NBloodServerSupervisor/WebInterface/ViewModel/ServerParameters.cs
2020-01-24 14:34:10 +01:00

14 lines
258 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; }
}
}