24 lines
1.3 KiB
C#
24 lines
1.3 KiB
C#
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; }
|
|
}
|
|
}
|