11 lines
395 B
C#
11 lines
395 B
C#
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; }
|
|
}
|
|
|
|
}
|