mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
402 B
C#
22 lines
402 B
C#
namespace Wox.Plugin.FindFile.MFTSearch
|
|
{
|
|
public class MFTSearchRecord
|
|
{
|
|
private USNRecord usn;
|
|
|
|
public MFTSearchRecord(USNRecord usn)
|
|
{
|
|
this.usn = usn;
|
|
}
|
|
|
|
public string FullPath
|
|
{
|
|
get { return usn.FullPath; }
|
|
}
|
|
|
|
public bool IsFolder
|
|
{
|
|
get { return usn.IsFolder; }
|
|
}
|
|
}
|
|
}
|