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