20 lines
389 B
C#
20 lines
389 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 06:51:53
|
|
* Version: 1.0.7
|
|
*/
|
|
|
|
namespace FileSearch.Logic.UI.Entries
|
|
{
|
|
public interface IPathEntry
|
|
{
|
|
FileSystemInfo FileSystemInfo { get; }
|
|
|
|
bool IsDirectory { get; }
|
|
|
|
ListViewItem BuildListViewItem();
|
|
}
|
|
}
|