podman-client-dotnet/src/PodmanClient/Models/Exec/CreateExecRequest.cs
Maksym Sadovnychyy b37342cda1 (feature): init
2024-08-17 22:11:46 +02:00

23 lines
661 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaksIT.PodmanClientDotNet.Models.Exec
{
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; }
}
}