📄 shippingregioninfo.vb
字号:
Namespace NetShopForge.Library.Shipping
<Serializable()> Public Class ShippingRegionInfo
Private _shippingregionid As Integer
Private _name As String
Private _regiondescription As String
Private _isvalid As Boolean
''' <summary>
'''
''' </summary>
Public Property ShippingRegionID() As Integer
Get
Return _shippingregionid
End Get
Set(ByVal Value As Integer)
_shippingregionid = Value
End Set
End Property
''' <summary>
'''
''' </summary>
Public Property Name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property
''' <summary>
'''
''' </summary>
Public Property RegionDescription() As String
Get
Return _regiondescription
End Get
Set(ByVal Value As String)
_regiondescription = Value
End Set
End Property
''' <summary>
'''
''' </summary>
Public Property IsValid() As Boolean
Get
Return _isvalid
End Get
Set(ByVal Value As Boolean)
_isvalid = Value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -