namespace MaksIT.PodmanClientDotNet.Models; /// /// Libpod container or image specification model (Port Mapping). /// 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; } }