Dalamud/Dalamud.Bootstrap/Windows/ProcessCreationOptions.cs
2020-04-01 20:00:15 +09:00

11 lines
273 B
C#

namespace Dalamud.Bootstrap.Windows
{
internal sealed class ProcessCreationOptions
{
public string ImagePath { get; set; } = null!;
public string? CommandLine { get; set; } = null;
public bool CreateSuspended { get; set; } = true;
}
}