podman-client-dotnet/src/PodmanClient/Dtos/Common/ReportDto.cs

10 lines
257 B
C#

namespace MaksIT.PodmanClientDotNet.Dtos.Common;
/// <summary>
/// Deserialized Podman libpod API payload (Report).
/// </summary>
public sealed class ReportDto {
public string[]? Id { get; set; }
public Dictionary<string, string>? Err { get; set; }
}