Modules/ZooFlow/Events/OnFlowFormStateChangedEvent.vb
2019-09-24 12:55:58 +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