mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-22 18:52:44 +01:00
29 lines
696 B
C#
29 lines
696 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebInterface
|
|
{
|
|
public class StartServerResponse
|
|
{
|
|
public bool IsSuccess { get; set; }
|
|
public int Port { get; set; }
|
|
public string CommandLine { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public StartServerResponse(string errorMessage = "")
|
|
{
|
|
IsSuccess = false;
|
|
ErrorMessage = errorMessage ?? "";
|
|
}
|
|
|
|
public StartServerResponse(int port, string commandLine)
|
|
{
|
|
IsSuccess = true;
|
|
Port = port;
|
|
CommandLine = commandLine;
|
|
}
|
|
}
|
|
}
|