Option Strict On
Option Explicit On

Imports System
Imports Nexamas.UI.FileSystem

Namespace Nexamas.UI.Components

    Friend NotInheritable Class FileSystemEntryEventArgs
        Inherits EventArgs

        Friend ReadOnly Property Entry As FileSystemEntry

        Friend Sub New(entry As FileSystemEntry)
            If entry Is Nothing Then Throw New ArgumentNullException(NameOf(entry))
            Me.Entry = entry
        End Sub

    End Class

End Namespace