// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Text; namespace Gauntlet { /// /// POCO class for apps that can run through containers. /// public class ContainerInfo { public string ImageName { get; set; } public string ContainerName { get; set; } public string RunCommandPrepend { get; set; } public string WorkingDir { get; set; } } public interface IContainerized { /// /// For apps running through Docker containers. /// ContainerInfo ContainerInfo { get; set; } } }