Dalamud/Dalamud.Bootstrap/OS/Windows/ProcessCreationOptions.cs
2020-04-08 23:54:35 +09:00

15 lines
380 B
C#

using System.Collections.Generic;
namespace Dalamud.Bootstrap.Windows
{
internal sealed class ProcessCreationOptions
{
public string ImagePath { get; set; } = null!;
public string? CommandLine { get; set; } = null;
public IDictionary<string, string>? Environments { get; set; } = null;
public bool CreateSuspended { get; set; }
}
}