-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataTypes.vb
31 lines (27 loc) · 838 Bytes
/
DataTypes.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Public Module DataTypes
'Todo: product data type
Public Structure Product
Public product_name As String
Public product_price As Decimal
Public product_production_Date As Date
Public product_expiry_Date As Date
Public selectedCategoryID As Integer
End Structure
'!: qr code data type
Structure QR_Code
Dim qr_code_value As Byte()
Dim created_at As Date
Dim product_id As Integer
End Structure
'!: category data type
Public Structure Category
Public CategoryID As Integer
Public CategoryName As String
End Structure
'!: search filter data type
Public Structure search_Filter
Public table_Name As String
Public column_Name As String
Public values As String
End Structure
End Module