Files

14 lines
293 B
C#
Raw Permalink 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);
}