mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
namespace Cosmos.TestRunner.Core
|
|
{
|
|
public class RunConfiguration
|
|
{
|
|
public bool IsELF { get; }
|
|
public RunTargetEnum RunTarget { get; }
|
|
|
|
public RunConfiguration(bool isElf, RunTargetEnum runTarget)
|
|
{
|
|
IsELF = isElf;
|
|
RunTarget = runTarget;
|
|
}
|
|
}
|
|
}
|