namespace MaksIT.PodmanClientDotNet.Dtos.System;
///
/// Deserialized Podman libpod API payload (System Df).
///
public sealed class SystemDfDto {
public SystemDfEntryDto[]? Images { get; set; }
public SystemDfEntryDto[]? Containers { get; set; }
public SystemDfEntryDto[]? Volumes { get; set; }
}
///
/// Deserialized Podman libpod API payload (System Df Entry).
///
public sealed class SystemDfEntryDto {
public long Size { get; set; }
public long Reclaimable { get; set; }
}