Utopia-Canteen-System/UtopiaCanteen.Shared/HealthResponse.cs

9 lines
206 B
C#

namespace UtopiaCanteen.Shared;
public sealed class HealthResponse
{
public string Status { get; set; } = "ok";
public string Mode { get; set; } = "server";
public DateTime Utc { get; set; }
}