mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-16 15:18:10 +02:00
12 lines
241 B
C#
12 lines
241 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Libpod container or image specification model (Namespace).
|
|
/// </summary>
|
|
|
|
public class Namespace {
|
|
public string? Nsmode { get; set; }
|
|
public string? Value { get; set; }
|
|
}
|