12 lines
347 B
C#
12 lines
347 B
C#
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; }
|
|
}
|
|
|
|
}
|