14 lines
420 B
VB.net
14 lines
420 B
VB.net
Public Interface IModule
|
|
''' <summary>
|
|
''' The short identifier which identifies all placeholders of this module
|
|
''' </summary>
|
|
''' <returns></returns>
|
|
Property PatternIdentifier As String
|
|
|
|
''' <summary>
|
|
''' Does this Module have outside dependencies like a database or a library like windream
|
|
''' </summary>
|
|
''' <returns></returns>
|
|
Property IsComplex As Boolean
|
|
End Interface
|