File size: 229 Bytes
eeb037e | 1 2 3 4 5 6 7 8 9 10 | namespace FastSeekWpf.Core;
public class FileRecord
{
public ulong FileRef { get; set; }
public ulong ParentRef { get; set; }
public string Name { get; set; } = string.Empty;
public FileKind Kind { get; set; }
}
|