mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
27 lines
488 B
C#
27 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; }
|
|
}
|
|
}
|
|
}
|