Files

24 lines
578 B
C#
Raw Permalink Normal View History

namespace PCL;
internal sealed class CrashAnalysisContext(
int processId,
string tempFolder)
{
public int ProcessId { get; } = processId;
public string TempFolder { get; } = tempFolder;
public List<CrashLogEntry> RawFiles { get; } = [];
public List<string> OutputFiles { get; } = [];
public McInstance? Instance { get; set; }
public CrashLogEntry? DirectOpenFile { get; set; }
public CrashLogSet? PreparedLogs { get; set; }
public CrashAnalysisResult? Result { get; set; }
public string LogAll { get; set; } = string.Empty;
}