Modules/GUIs.ZooFlow/Events/OnFlowFormStateChangedEvent.vb
2019-10-08 16:05:03 +02:00

14 lines
295 B
VB.net

Public Class OnFlowFormStateChangedEvent
Public Enum FlowFormState
[Default]
HasSearchResults
HasFileDropped
End Enum
Public ReadOnly Property State As FlowFormState
Public Sub New(State As FlowFormState)
_State = State
End Sub
End Class