shippingregioninfo.vb

来自「C#语言制作asp.net网上商店的」· VB 代码 · 共 59 行

VB
59
字号

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 + =
减小字号Ctrl + -
显示快捷键?