podman-client-dotnet/src/PodmanClient/Dtos/Container/DeleteContainerResponseDto.cs

10 lines
274 B
C#

namespace MaksIT.PodmanClientDotNet.Dtos.Container;
/// <summary>
/// Deserialized Podman libpod API payload (Delete Container response).
/// </summary>
public sealed class DeleteContainerResponseDto {
public string? Err { get; set; }
public string? Id { get; set; }
}