mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
11 lines
273 B
C#
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;
|
|
}
|
|
}
|