Compare commits
2 Commits
09b52f441b
...
30a6356565
| Author | SHA1 | Date | |
|---|---|---|---|
| 30a6356565 | |||
| 3046b7d203 |
@@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("Digital Data")>
|
||||
<Assembly: AssemblyProduct("Modules.Interfaces")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||
<Assembly: AssemblyTrademark("2.0.4.0")>
|
||||
<Assembly: AssemblyTrademark("2.0.5.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.0.4.0")>
|
||||
<Assembly: AssemblyFileVersion("2.0.4.0")>
|
||||
<Assembly: AssemblyVersion("2.0.5.0")>
|
||||
<Assembly: AssemblyFileVersion("2.0.5.0")>
|
||||
|
||||
@@ -2872,7 +2872,7 @@ Namespace ZUGFeRD.Version2_1_1
|
||||
"0")>
|
||||
Partial Public Class TradePartyType
|
||||
|
||||
Private idField() As IDType
|
||||
Private idField As IDType
|
||||
|
||||
Private globalIDField() As IDType
|
||||
|
||||
@@ -2891,13 +2891,14 @@ Namespace ZUGFeRD.Version2_1_1
|
||||
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
||||
|
||||
'''<remarks/>
|
||||
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
|
||||
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
||||
Public Property ID() As IDType()
|
||||
Public Property ID() As IDType
|
||||
Get
|
||||
Return Me.idField
|
||||
End Get
|
||||
Set
|
||||
Me.idField = value
|
||||
Me.idField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
@@ -1378,7 +1378,7 @@ Namespace ZUGFeRD.Version2_2_FacturX
|
||||
"0")>
|
||||
Partial Public Class TradePartyType
|
||||
|
||||
Private idField() As IDType
|
||||
Private idField As IDType
|
||||
|
||||
Private globalIDField() As IDType
|
||||
|
||||
@@ -1399,13 +1399,14 @@ Namespace ZUGFeRD.Version2_2_FacturX
|
||||
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
||||
|
||||
'''<remarks/>
|
||||
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
|
||||
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
||||
Public Property ID() As IDType()
|
||||
Public Property ID() As IDType
|
||||
Get
|
||||
Return Me.idField
|
||||
End Get
|
||||
Set
|
||||
Me.idField = value
|
||||
Me.idField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Reference in New Issue
Block a user