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