Files
agent-framework/dotnet/samples/HelloHttpApi/HelloHttpApi.ApiService/PingResponse.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

15 lines
406 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Text.Json.Serialization;
namespace HelloHttpApi.ApiService;
public class PingResponse(PingResponseStatus status, long timeOfLastUpdate)
{
[JsonPropertyName("status")]
public PingResponseStatus Status { get; } = status;
[JsonPropertyName("time_of_last_update")]
public long TimeOfLastUpdate { get; } = timeOfLastUpdate;
}