NBloodServerSupervisor/WebInterface/Models/StartServerResponse.cs

29 lines
696 B
C#
Raw Normal View History

2020-01-23 21:03:54 +01:00
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)
2020-01-23 21:03:54 +01:00
{
IsSuccess = true;
Port = port;
CommandLine = commandLine;
2020-01-23 21:03:54 +01:00
}
}
}