Option Strict On
Option Explicit On

Namespace Nexamas.UI.Theming

    ''' <summary>
    ''' Stable identity and registration metadata for an application theme.
    ''' </summary>
    <Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Advanced)>
    Friend Interface IMASThemeIdentity
        ReadOnly Property Id As String
        ReadOnly Property DisplayName As String
        ReadOnly Property Version As Integer
    End Interface

End Namespace