FileSearchWindows/FileSearch/Logic/UI/Entries/PathEventArgs.cs
Dvurechensky 2edf663d5b 1.0.5
2025-05-12 06:55:09 +03:00

28 lines
576 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
{
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; }
}
}
}