mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-25 20:22:47 +01:00
24 lines
447 B
C#
24 lines
447 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WebInterface
|
|||
|
{
|
|||
|
public class ListServersResponse
|
|||
|
{
|
|||
|
public IList<Server> Servers { get; set; }
|
|||
|
|
|||
|
string ErrorMessage { get; set; }
|
|||
|
|
|||
|
public ListServersResponse()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public ListServersResponse(string errorMessage)
|
|||
|
{
|
|||
|
ErrorMessage = errorMessage;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|