10 lines
257 B
C#
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; }
|
|
}
|