56 lines
2.8 KiB
C#
56 lines
2.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
// This code was generated by XmlSchemaClassGenerator version 3.0.1270.0 using the following command:
|
|
// xscgen --namespace http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement=AyCode.Services.Nav.Ekaer.Models --namespace http://schemas.nav.gov.hu/EKAER/1.0/common=AyCode.Services.Nav.Ekaer.Models.Common --nullable --separateFiles --output C:/Users/Fullepi/Downloads/ekaer/Generated2 C:/Users/Fullepi/Downloads/ekaer/ekaermanagement.xsd
|
|
namespace AyCode.Services.Nav.Ekaer.Models
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// <para>/manageTradeCards response structure</para>
|
|
/// </summary>
|
|
[System.ComponentModel.DescriptionAttribute("/manageTradeCards response structure")]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("XmlSchemaClassGenerator", "3.0.1270.0")]
|
|
[System.SerializableAttribute()]
|
|
[System.Xml.Serialization.XmlTypeAttribute("manageTradeCardsResponse", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlRootAttribute("manageTradeCardsResponse", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
|
|
public partial class ManageTradeCardsResponse : BasicResponseType
|
|
{
|
|
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
private System.Collections.ObjectModel.Collection<TradeCardOperationResultType> _tradeCardOperationsResults;
|
|
|
|
[System.ComponentModel.DataAnnotations.RequiredAttribute(AllowEmptyStrings=true)]
|
|
[System.Xml.Serialization.XmlArrayAttribute("tradeCardOperationsResults")]
|
|
[System.Xml.Serialization.XmlArrayItemAttribute("operationResult", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
|
|
public System.Collections.ObjectModel.Collection<TradeCardOperationResultType> TradeCardOperationsResults
|
|
{
|
|
get
|
|
{
|
|
return _tradeCardOperationsResults;
|
|
}
|
|
private set
|
|
{
|
|
_tradeCardOperationsResults = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// <para xml:lang="en">Initializes a new instance of the <see cref="ManageTradeCardsResponse" /> class.</para>
|
|
/// </summary>
|
|
public ManageTradeCardsResponse()
|
|
{
|
|
this._tradeCardOperationsResults = new System.Collections.ObjectModel.Collection<TradeCardOperationResultType>();
|
|
}
|
|
}
|
|
}
|