12 lines
235 B
VB.net
12 lines
235 B
VB.net
Public Class ClassControlUtils
|
|
Public Enum ControlType
|
|
Label = 0
|
|
TextBox = 1
|
|
End Enum
|
|
|
|
Public Class ControlMetadata
|
|
Public Id As Integer
|
|
Public Type As ControlType
|
|
End Class
|
|
End Class
|