Modules/EDMI_ClientSuite/EntityDesigner/ClassControlUtils.vb
Jonathan Jenne fcddb353c1 jj
2019-01-23 14:57:57 +01:00

15 lines
258 B
VB.net

Public Class ClassControlUtils
Public Enum ControlType
Label = 0
TextBox = 1
Combobox = 2
End Enum
Public Class ControlMetadata
Public Id As Integer
Public Type As ControlType
End Class
End Class