Public Interface IModule
'''
''' The short identifier which identifies all placeholders of this module
'''
'''
Property PatternIdentifier As String
'''
''' Does this Module have outside dependencies like a database or a library like windream
'''
'''
Property IsComplex As Boolean
'''
''' Main Replace Function
'''
''' The replaced string
Function Replace(pInput As String, pReplaceMap As Dictionary(Of String, Object)) As String
End Interface