init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
|
||||
{
|
||||
public class AllomanyReszRequest : EftRequest
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyReszRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyReszRequestBusinessContent AllomanyReszRequestBusinessContent { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
|
||||
{
|
||||
public class AllomanyReszRequestBusinessContent
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyPublikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Guid AllomanyPublikusId { get; set; }
|
||||
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string CimzettId { get; set; }
|
||||
[XmlElement(ElementName = "allomanyReszSorszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int AllomanyReszSorszam { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "getAllomanyResz", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class GetAllomanyResz
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyReszRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyReszRequest AllomanyReszRequest { get; set; }
|
||||
}
|
||||
}
|
10
Kreta.EESZTInterface/eFT/Model/AllomanyResz/Response/Adat.cs
Normal file
10
Kreta.EESZTInterface/eFT/Model/AllomanyResz/Response/Adat.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
public class Adat
|
||||
{
|
||||
[XmlElement(ElementName = "Include", Namespace = Namespaces.xopNS)]
|
||||
public Include Include { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
public class AllomanyResz
|
||||
{
|
||||
[XmlElement(ElementName = "publikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Guid PublikusId { get; set; }
|
||||
[XmlElement(ElementName = "sorszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int Sorszam { get; set; }
|
||||
[XmlElement(ElementName = "adat", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Adat Adat { get; set; }
|
||||
[XmlElement(ElementName = "hash", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Hash { get; set; }
|
||||
[XmlElement(ElementName = "meretByte", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int MeretByte { get; set; }
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
public class AllomanyReszResponse : EftResponse
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyReszResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyReszResponseBusinessContent AllomanyReszResponseBusinessContent { get; set; }
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
public class AllomanyReszResponseBusinessContent
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyResz", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyResz AllomanyResz { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "getAllomanyReszResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class GetAllomanyReszResponse
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyReszResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyReszResponse AllomanyReszResponse { get; set; }
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
|
||||
{
|
||||
[XmlType(TypeName = "Include", Namespace = Namespaces.xopNS)]
|
||||
public class Include
|
||||
{
|
||||
[XmlAttribute(AttributeName = "href", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Href { get; set; }
|
||||
}
|
||||
|
||||
}
|
14
Kreta.EESZTInterface/eFT/Model/BusinessMessageHeader.cs
Normal file
14
Kreta.EESZTInterface/eFT/Model/BusinessMessageHeader.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public class BusinessMessageHeader
|
||||
{
|
||||
[XmlElement(ElementName = "initiator", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Initiator Initiator { get; set; }
|
||||
[XmlElement(ElementName = "representedUser", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public RepresentedUser RepresentedUser { get; set; }
|
||||
[XmlElement(ElementName = "logging", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Logging Logging { get; set; }
|
||||
}
|
||||
}
|
10
Kreta.EESZTInterface/eFT/Model/EftRequest.cs
Normal file
10
Kreta.EESZTInterface/eFT/Model/EftRequest.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public abstract class EftRequest
|
||||
{
|
||||
[XmlElement(ElementName = "businessMessageHeader", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public BusinessMessageHeader BusinessMessageHeader { get; set; }
|
||||
}
|
||||
}
|
12
Kreta.EESZTInterface/eFT/Model/EftResponse.cs
Normal file
12
Kreta.EESZTInterface/eFT/Model/EftResponse.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public abstract class EftResponse
|
||||
{
|
||||
[XmlElement(ElementName = "businessMessageHeader", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public BusinessMessageHeader BusinessMessageHeader { get; set; }
|
||||
[XmlElement(ElementName = "status", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
24
Kreta.EESZTInterface/eFT/Model/Initiator.cs
Normal file
24
Kreta.EESZTInterface/eFT/Model/Initiator.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public class Initiator
|
||||
{
|
||||
[XmlElement(ElementName = "userId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string UserId { get; set; }
|
||||
[XmlElement(ElementName = "userName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string UserName { get; set; }
|
||||
[XmlElement(ElementName = "clientUserId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string ClientUserId { get; set; }
|
||||
[XmlElement(ElementName = "applicationId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string ApplicationId { get; set; }
|
||||
[XmlElement(ElementName = "applicationName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string ApplicationName { get; set; }
|
||||
[XmlElement(ElementName = "applicationFunction", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string ApplicationFunction { get; set; }
|
||||
[XmlElement(ElementName = "organizationId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string OrganizationId { get; set; }
|
||||
[XmlElement(ElementName = "organizationUnitId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string OrganizationUnitId { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "getIntezmenyiAllomanyLista", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class GetIntezmenyiAllomanyLista
|
||||
{
|
||||
[XmlElement(ElementName = "intezmenyiAllomanyListaRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public IntezmenyiAllomanyListaRequest IntezmenyiAllomanyListaRequest { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
|
||||
{
|
||||
public class IntezmenyiAllomanyListaRequest : EftRequest
|
||||
{
|
||||
[XmlElement(ElementName = "intezmenyiAllomanyListaRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public IntezmenyiAllomanyListaRequestBusinessContent IntezmenyiAllomanyListaRequestBusinessContent { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
|
||||
{
|
||||
public class IntezmenyiAllomanyListaRequestBusinessContent
|
||||
{
|
||||
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string CimzettId { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
|
||||
{
|
||||
public class Allomany
|
||||
{
|
||||
[XmlElement(ElementName = "id", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int Id { get; set; }
|
||||
[XmlElement(ElementName = "publikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Guid PublikusId { get; set; }
|
||||
[XmlElement(ElementName = "allomanyTipus", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public AllomanyTipus AllomanyTipus { get; set; }
|
||||
[XmlElement(ElementName = "nev", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Nev { get; set; }
|
||||
[XmlElement(ElementName = "kiterjesztes", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Kiterjesztes { get; set; }
|
||||
[XmlElement(ElementName = "bekuldoModulUser", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string BekuldoModulUser { get; set; }
|
||||
[XmlElement(ElementName = "datum", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public DateTime Datum { get; set; }
|
||||
[XmlElement(ElementName = "meretMb", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int MeretMb { get; set; }
|
||||
[XmlElement(ElementName = "leiras", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Leiras { get; set; }
|
||||
[XmlElement(ElementName = "tomoritett", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public bool Tomoritett { get; set; }
|
||||
[XmlElement(ElementName = "binaris", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public bool Binaris { get; set; }
|
||||
[XmlElement(ElementName = "statusz", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Statusz { get; set; }
|
||||
[XmlElement(ElementName = "darabszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int Darabszam { get; set; }
|
||||
[XmlElement(ElementName = "ervenyesseg", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public DateTime Ervenyesseg { get; set; }
|
||||
[XmlElement(ElementName = "hash", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Hash { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
|
||||
{
|
||||
public class AllomanyTipus
|
||||
{
|
||||
[XmlElement(ElementName = "id", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public int Id { get; set; }
|
||||
[XmlElement(ElementName = "nev", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Nev { get; set; }
|
||||
[XmlElement(ElementName = "leiras", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string Leiras { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "getIntezmenyiAllomanyListaResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class GetIntezmenyiAllomanyListaResponse
|
||||
{
|
||||
[XmlElement(ElementName = "intezmenyiAllomanyListaResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public IntezmenyiAllomanyListaResponse IntezmenyiAllomanyListaResponse { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
|
||||
{
|
||||
public class IntezmenyiAllomanyListaResponse : EftResponse
|
||||
{
|
||||
[XmlElement(ElementName = "intezmenyiAllomanyListaResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public IntezmenyiAllomanyListaResponseBusinessContent IntezmenyiAllomanyListaResponseBusinessContent { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
|
||||
{
|
||||
public class IntezmenyiAllomanyListaResponseBusinessContent
|
||||
{
|
||||
[XmlArray(ElementName = "allomanyok", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
[XmlArrayItem(ElementName = "allomany", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public List<Allomany> Allomanyok { get; set; }
|
||||
}
|
||||
}
|
24
Kreta.EESZTInterface/eFT/Model/Logging.cs
Normal file
24
Kreta.EESZTInterface/eFT/Model/Logging.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public class Logging
|
||||
{
|
||||
[XmlIgnore]
|
||||
public DateTime SubmittedAt { get; set; }
|
||||
|
||||
[XmlElement(ElementName = "submittedAt", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string SubmittedAtStr
|
||||
{
|
||||
get
|
||||
{
|
||||
return SubmittedAt.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ");
|
||||
}
|
||||
set
|
||||
{
|
||||
SubmittedAt = DateTime.Parse(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
14
Kreta.EESZTInterface/eFT/Model/RepresentedUser.cs
Normal file
14
Kreta.EESZTInterface/eFT/Model/RepresentedUser.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public class RepresentedUser
|
||||
{
|
||||
[XmlElement(ElementName = "userId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string UserId { get; set; }
|
||||
[XmlElement(ElementName = "userName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string UserName { get; set; }
|
||||
[XmlElement(ElementName = "clientUserId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string ClientUserId { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
|
||||
{
|
||||
public class SikeresAllomanyLetoltesRequest : EftRequest
|
||||
{
|
||||
[XmlElement(ElementName = "sikeresAllomanyLetoltesRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public SikeresAllomanyLetoltesRequestBusinessContent SikeresAllomanyLetoltesRequestBusinessContent { get; set; }
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
|
||||
{
|
||||
public class SikeresAllomanyLetoltesRequestBusinessContent
|
||||
{
|
||||
[XmlElement(ElementName = "allomanyPublikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public Guid AllomanyPublikusId { get; set; }
|
||||
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string CimzettId { get; set; }
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "sikeresCimzettAllomanyLetoltes", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class SikeresCimzettAllomanyLetoltes
|
||||
{
|
||||
[XmlElement(ElementName = "sikeresAllomanyLetoltesRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public SikeresAllomanyLetoltesRequest SikeresAllomanyLetoltesRequest { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Response
|
||||
{
|
||||
public class SikeresAllomanyLetoltesResponse : EftResponse
|
||||
{
|
||||
[XmlElement(ElementName = "sikeresAllomanyLetoltesResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string SikeresAllomanyLetoltesResponseBusinessContent { get; set; } = null;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Response
|
||||
{
|
||||
[Serializable]
|
||||
[XmlRoot(ElementName = "sikeresCimzettAllomanyLetoltesResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
|
||||
public class SikeresCimzettAllomanyLetoltesResponse
|
||||
{
|
||||
[XmlElement(ElementName = "sikeresAllomanyLetoltesResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public SikeresAllomanyLetoltesResponse SikeresAllomanyLetoltesResponse { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue