10 lines
326 B
C#
10 lines
326 B
C#
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; }
|
|
}
|
|
}
|