14 lines
562 B
C#
14 lines
562 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace Kreta.EESZTInterface.eFT.Model
|
|
{
|
|
public class RepresentedUser
|
|
{
|
|
[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; }
|
|
}
|
|
}
|