finder-wpf / FastSeekWpf /Core /FileRecord.cs
anshdadhich's picture
Upload FastSeekWpf/Core/FileRecord.cs
eeb037e verified
raw
history blame
229 Bytes
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; }
}