⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shophelpinfo.vb

📁 C#语言制作asp.net网上商店的
💻 VB
字号:

Namespace NetShopForge.Library.ShopHelp
    Public Class ShopHelpInfo
        Private _ShopHelpID As Integer
        Private _ShopCategoryID As Integer
        Private _Name As String
        Private _Description As String

        Public Property ShopHelpID() As Integer
            Get
                Return _ShopHelpID
            End Get
            Set(ByVal value As Integer)
                _ShopHelpID = value
            End Set
        End Property

        Public Property ShopHelpCategoryID() As Integer
            Get
                Return _ShopCategoryID
            End Get
            Set(ByVal value As Integer)
                _ShopCategoryID = value
            End Set
        End Property

        Public Property Name() As String
            Get
                Return _Name
            End Get
            Set(ByVal value As String)
                _Name = value
            End Set
        End Property

        Public Property Description() As String
            Get
                Return _Description
            End Get
            Set(ByVal value As String)
                _Description = value
            End Set
        End Property
    End Class
End Namespace

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -