Namespace DotNetNuke.Modules.DynamicForms
 
    Public Class RecordData
        Private _TotalRecords As Integer
        Private _CurrentRecord As Integer
        Private _IsFirstRecord As Boolean
        Private _IsLastRecord As Boolean
        Private _RecordID As Integer
        Private _RecordName As String
 
        ' initialization
        Public Sub New()
        End Sub
 
        ' public properties
        Public Property TotalRecords() As Integer
            Get
                Return _TotalRecords
            End Get
            Set(ByVal Value As Integer)
                _TotalRecords = Value
            End Set
        End Property
        Public Property CurrentRecord() As Integer
            Get
                Return _CurrentRecord
            End Get
            Set(ByVal Value As Integer)
                _CurrentRecord = Value
            End Set
        End Property
        Public Property IsFirstRecord() As Boolean
            Get
                Return _IsFirstRecord
            End Get
            Set(ByVal Value As Boolean)
                _IsFirstRecord = Value
            End Set
        End Property
        Public Property IsLastRecord() As Boolean
            Get
                Return _IsLastRecord
            End Get
            Set(ByVal Value As Boolean)
                _IsLastRecord = Value
            End Set
        End Property
        Public Property RecordID() As Integer
            Get
                Return _RecordID
            End Get
            Set(ByVal Value As Integer)
                _RecordID = Value
            End Set
        End Property
        Public Property RecordName() As String
            Get
                Return _RecordName
            End Get
            Set(ByVal Value As String)
                _RecordName = Value
            End Set
        End Property
    End Class
End Namespace