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