mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-16 15:18:10 +02:00
14 lines
399 B
C#
14 lines
399 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Libpod container or image specification model (Bind Options).
|
|
/// </summary>
|
|
|
|
public class BindOptions {
|
|
public bool CreateMountpoint { get; set; }
|
|
public bool NonRecursive { get; set; }
|
|
public string? Propagation { get; set; }
|
|
public bool ReadOnlyForceRecursive { get; set; }
|
|
public bool ReadOnlyNonRecursive { get; set; }
|
|
} |