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

15 lines
394 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 IEnumerable<KeyValuePair<string, string>>? Environments { get; set; } = null;
public bool CreateSuspended { get; set; }
}
}