Files
agent-framework/dotnet/samples/HelloHttpApi/HelloHttpApi.ApiService/PingResponseStatus.cs
T
Reuben Bond 41d441420e Initial draft of actor runtime abstractions (#197)
* Initial draft of actor runtime abstractions
2025-07-22 16:05:58 -04:00

10 lines
154 B
C#

// Copyright (c) Microsoft. All rights reserved.
namespace HelloHttpApi.ApiService;
public enum PingResponseStatus
{
Healthy,
HealthyBusy,
}