This commit is contained in:
Brett Hewitson 2021-11-20 22:16:59 +10:00
parent f6ae6364a9
commit 2e8596e0b7
16 changed files with 588 additions and 1 deletions

View file

@ -0,0 +1,15 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace ServerManager.WebApplication.Models.ApiVersion1
{
public class ServerStatusResponse
{
/// <summary>
/// True if the server is available; otherwise false.
/// </summary>
[Required]
[Description("True if the server is available; otherwise false.")]
public string Available { get; set; } = false.ToString();
}
}