ServerManagers/src/ServerManager.WebApplication/Models/ApiVersion1/ServerStatusResponse.cs
Brett Hewitson f5a96f965a Dotnet 8.x Update
- updated all nugets to latest 8.x versions
- linting fixes
- switched the application insights to use the connection string.
2025-03-21 06:46:38 +10:00

14 lines
No EOL
418 B
C#

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();
}