From 59e97d94898455d0a5326f8246e537d9e6f82d11 Mon Sep 17 00:00:00 2001 From: Ahmad Kelany Date: Sun, 24 Jul 2022 01:52:14 +0300 Subject: [PATCH] Update AddressType.cs added PlotIdentification property to address type --- .../Common/CommonAggregateComponents/AddressType.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Ubl-Tr/Common/CommonAggregateComponents/AddressType.cs b/Ubl-Tr/Common/CommonAggregateComponents/AddressType.cs index 81ad3bb..b84ac87 100644 --- a/Ubl-Tr/Common/CommonAggregateComponents/AddressType.cs +++ b/Ubl-Tr/Common/CommonAggregateComponents/AddressType.cs @@ -33,6 +33,9 @@ public partial class AddressType private DistrictType districtField; private CountryType countryField; + + private PlotIdentificationType plotIdentificationField; + /// [System.Xml.Serialization.XmlElementAttribute(Namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2")] @@ -203,6 +206,7 @@ public DistrictType District } /// + [System.Xml.Serialization.XmlElementAttribute(Namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2")] public CountryType Country { get @@ -214,5 +218,12 @@ public CountryType Country this.countryField = value; } } + + [System.Xml.Serialization.XmlElementAttribute(Namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2")] + public PlotIdentificationType PlotIdentification + { + get { return plotIdentificationField; } + set { plotIdentificationField = value; } + } } -} \ No newline at end of file +}