📄 newssubscriptioninfo.vb
字号:
Namespace NetShopForge.Library.News
Public Class NewsSubscriptionInfo
Public Sub New()
End Sub
Private _Newcategoryid As Integer
Private _email As String
Private _isvalid As Boolean
Private _startdata As DateTime
''' <summary>
'''
''' </summary>
Public Property NewCategoryID() As Integer
Get
Return _Newcategoryid
End Get
Set(ByVal Value As Integer)
_Newcategoryid = value
End Set
End Property
''' <summary>
'''
''' </summary>
Public Property Email() As String
Get
Return _email
End Get
Set(ByVal Value As String)
_email = 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
''' <summary>
'''
''' </summary>
Public Property StartData() As DateTime
Get
Return _startdata
End Get
Set(ByVal Value As DateTime)
_startdata = value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -