35 lines
822 B
VB.net
35 lines
822 B
VB.net
Public Class XmlItemProperty
|
|
Public IsRequired As Boolean
|
|
Public IsGrouped As Boolean
|
|
|
|
Public TableName As String
|
|
Public TableColumn As String
|
|
Public Description As String
|
|
Public GroupScope As String
|
|
|
|
''' <summary>
|
|
''' Document version, eg. ZUGFeRD Schema version
|
|
''' </summary>
|
|
Public Specification As String
|
|
|
|
''' <summary>
|
|
''' XML Pfad, für Anzeige in Ablehnungsmail
|
|
''' </summary>
|
|
Public XMLPath As String
|
|
|
|
''' <summary>
|
|
''' (Daten-)Typ des Knoten
|
|
''' 0 = Default / Text
|
|
''' 1 = Datum
|
|
''' 2 = Gleitkomma
|
|
''' 3 = Attachment-Felder
|
|
''' 4 = Elemente einer Liste, vgl Currency
|
|
''' </summary>
|
|
Public ItemType As Integer
|
|
|
|
''' <summary>
|
|
''' BT-Feld-Bezeichnung
|
|
''' </summary>
|
|
Public EN16931_ID As String
|
|
|
|
End Class |