mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 22:02:57 +00:00
10 lines
230 B
C#
10 lines
230 B
C#
|
using System.Diagnostics;
|
||
|
|
||
|
namespace AIStudio.Tools;
|
||
|
|
||
|
public sealed class PandocPreparedProcess(ProcessStartInfo startInfo, bool isLocal)
|
||
|
{
|
||
|
public ProcessStartInfo StartInfo => startInfo;
|
||
|
|
||
|
public bool IsLocal => isLocal;
|
||
|
}
|