19 lines
555 B
C#
19 lines
555 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models.Exec;
|
|
|
|
/// <summary>
|
|
/// Libpod API request body for Create Exec request.
|
|
/// </summary>
|
|
|
|
public class CreateExecRequest {
|
|
public bool AttachStderr { get; set; }
|
|
public bool AttachStdin { get; set; }
|
|
public bool AttachStdout { get; set; }
|
|
public string[]? Cmd { get; set; }
|
|
public string? DetachKeys { get; set; }
|
|
public string[]? Env { get; set; }
|
|
public bool Privileged { get; set; }
|
|
public bool Tty { get; set; }
|
|
public string? User { get; set; }
|
|
public string? WorkingDir { get; set; }
|
|
} |