Files
MRCC/launcher/PCL-CE/Plain Craft Launcher 2/Modules/Minecraft/CrashAnalysis/Logs/CrashLogEntry.cs
T

14 lines
293 B
C#
Raw Normal View History

using System.IO;
namespace PCL;
internal sealed class CrashLogEntry(
string fullPath,
IReadOnlyList<string> lines)
{
public string FullPath { get; } = fullPath;
public IReadOnlyList<string> Lines { get; } = lines;
public string FileName => Path.GetFileName(FullPath);
}