12 lines
214 B
C#
12 lines
214 B
C#
namespace FileSearch.Logic.UI.Entries
|
|
{
|
|
public interface IPathEntry
|
|
{
|
|
FileSystemInfo FileSystemInfo { get; }
|
|
|
|
bool IsDirectory { get; }
|
|
|
|
ListViewItem BuildListViewItem();
|
|
}
|
|
}
|