Files
UnrealEngine/Engine/Source/Programs/AutomationTool/Gauntlet/Framework/Base/Gauntlet.Container.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

28 lines
606 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Text;
namespace Gauntlet
{
/// <summary>
/// POCO class for apps that can run through containers.
/// </summary>
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
{
/// <summary>
/// For apps running through Docker containers.
/// </summary>
ContainerInfo ContainerInfo { get; set; }
}
}