mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-15 06:38:10 +02:00
16 lines
459 B
C#
16 lines
459 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Libpod container or image specification model (I D Mapping Options).
|
|
/// </summary>
|
|
|
|
public class IDMappingOptions {
|
|
public bool AutoUserNs { get; set; }
|
|
public AutoUserNsOptions? AutoUserNsOpts { get; set; }
|
|
public List<IDMapping>? GIDMap { get; set; }
|
|
public bool HostGIDMapping { get; set; }
|
|
public bool HostUIDMapping { get; set; }
|
|
public List<IDMapping>? UIDMap { get; set; }
|
|
}
|