EDMIService: Add dynamic file path

This commit is contained in:
Jonathan Jenne
2021-12-09 13:31:25 +01:00
parent ebecda2506
commit 42db951c93
8 changed files with 255 additions and 161 deletions

View File

@@ -0,0 +1,29 @@
Namespace Methods
Public MustInherit Class BaseAttributeValue
End Class
''' <summary>
''' Attribute values supplied by the user
''' </summary>
Public Class UserAttributeValue
Public Property AttributeName As String
Public Property AttributeValues As List(Of String)
Public Property AttributeId As Integer
Public Property ControlName As String
Public Overrides Function ToString() As String
Return AttributeName
End Function
End Class
Public Class AutoAttributeValue
Inherits BaseAttributeValue
End Class
Public Class SystemAttributeValue
Inherits BaseAttributeValue
End Class
End Namespace