mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
28 lines
488 B
C#
28 lines
488 B
C#
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; }
|
|
}
|
|
}
|
|
}
|