Option Strict On
Option Explicit On

Namespace Nexamas.UI.DataBinding

    ''' <summary>
    ''' Friend-only immutable cell in a compact pivot export snapshot.
    ''' </summary>
    Friend NotInheritable Class MASPivotExportCell
        Friend Sub New(rowKey As String,
                       columnKey As String,
                       value As Decimal)
            Me.RowKey = If(rowKey, String.Empty)
            Me.ColumnKey = If(columnKey, String.Empty)
            Me.Value = value
        End Sub

        Friend ReadOnly Property RowKey As String
        Friend ReadOnly Property ColumnKey As String
        Friend ReadOnly Property Value As Decimal
    End Class

End Namespace
