mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-16 15:18:10 +02:00
15 lines
359 B
C#
15 lines
359 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Libpod container or image specification model (Port Mapping).
|
|
/// </summary>
|
|
|
|
public class PortMapping {
|
|
public int ContainerPort { get; set; }
|
|
public string? HostIp { get; set; }
|
|
public int HostPort { get; set; }
|
|
public string? Protocol { get; set; }
|
|
public int Range { get; set; }
|
|
}
|