14 lines
480 B
C#
14 lines
480 B
C#
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; }
|
|
}
|
|
|
|
}
|