📄 productfeatureinfo.vb
字号:
Imports Microsoft.VisualBasic
Namespace NetShopForge.Library.Product
Public Class ProductFeatureInfo
' Private _productID As Integer
Private _featureName As String
Private _featureValue As String
Sub New(ByVal featureName, ByVal featureValue)
'_productID = productID
_featureName = featureName
_featureValue = featureValue
End Sub
'Public Property ProductID() As Integer
' Get
' Return _productid
' End Get
' Set(ByVal Value As Integer)
' _productid = Value
' End Set
'End Property
Public Property FeatureName() As String
Get
Return _featureName
End Get
Set(ByVal Value As String)
_featureName = Value
End Set
End Property
Public Property FeatureValue() As String
Get
Return _featureValue
End Get
Set(ByVal Value As String)
_featureValue = Value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -