Option Strict On
Option Explicit On

Namespace Nexamas.UI.DataBinding

    Friend NotInheritable Class MASItemsSourceItem

        Friend Sub New(stableKey As String,
                       item As Object)
            Me.StableKey = If(stableKey, String.Empty).Trim()
            Me.Item = item
        End Sub

        Friend ReadOnly Property StableKey As String
        Friend ReadOnly Property Item As Object

    End Class

End Namespace
