Move MFTSearch to find file plugin.

This commit is contained in:
qianlifeng
2014-10-27 14:53:44 +08:00
parent c3ecf2d84e
commit 970c9e70e4
13 changed files with 15 additions and 11 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure.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; }
}
}
}