EDMIService: Add dynamic file path
This commit is contained in:
29
Service.EDMIService/Methods/AttributeValue.vb
Normal file
29
Service.EDMIService/Methods/AttributeValue.vb
Normal 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
|
||||
Reference in New Issue
Block a user