Imports Microsoft.VisualBasic

Public Class MetaTagDetails

    Private _metaTagId As Integer
    Private _pageId As Integer
    Private _metaName As String
    Private _metaContent As String

    Public Sub MetaTagDetails()
    End Sub

    Public Property MetaTagId() As Integer
        Get
            Return _metaTagId
        End Get
        Set(ByVal value As Integer)
            _metaTagId = value
        End Set
    End Property

    Public Property PageId() As Integer
        Get
            Return _pageId
        End Get
        Set(ByVal value As Integer)
            _pageId = value
        End Set
    End Property

    Public Property MetaName() As String
        Get
            Return _metaName
        End Get
        Set(ByVal value As String)
            _metaName = value
        End Set
    End Property

    Public Property MetaContent() As String
        Get
            Return _metaContent
        End Get
        Set(ByVal value As String)
            _metaContent = value
        End Set
    End Property
End Class
