podman-client-dotnet/src/PodmanClient/Dtos/System/LibpodPingDto.cs

9 lines
208 B
C#

namespace MaksIT.PodmanClientDotNet.Dtos.System;
/// <summary>
/// Deserialized Podman libpod API payload (Libpod Ping).
/// </summary>
public sealed class LibpodPingDto {
public bool Ping { get; set; }
}