namespace MaksIT.PodmanClientDotNet.Dtos.Generate; /// /// Deserialized Podman libpod API payload (Generate Systemd). /// public sealed class GenerateSystemdDto { public Dictionary? Units { get; set; } } /// /// Deserialized Podman libpod API payload (Systemd Unit). /// public sealed class SystemdUnitDto { public string? Name { get; set; } public string? Content { get; set; } } /// /// Deserialized Podman libpod API payload (Play Kube Report). /// public sealed class PlayKubeReportDto { public string? Pod { get; set; } public string[]? Containers { get; set; } public string[]? Volumes { get; set; } public string[]? Secrets { get; set; } public string[]? Networks { get; set; } }