FileSearchWindows/FileSearch/Logic/UI/Entries/PathEventArgs.cs
Dvurechensky e2bffc8b49 1.0
Main
2024-10-05 10:06:04 +03:00

20 lines
401 B
C#

namespace FileSearch.Logic.UI.Entries
{
internal class PathEventArgs : EventArgs
{
private readonly PathEntry _entry;
public PathEventArgs(PathEntry entry)
{
if (entry == null) throw new ArgumentNullException("entry");
_entry = entry;
}
public PathEntry Entry
{
get { return _entry; }
}
}
}