I am trying to deserialize this code
<request>
<employee id="40407">Test User</employee>
</request>
I've created a class:
public class Request
{
public string employee { get; set; }
[XmlAttribute("employee/id")]
public string employeeId { get; set; }
}
Without attribute everything works, but I need the data from attribute "id" as well. Once I put [XmlAttribute("employee/id")] it doesn't want to work. What I am doing wrong?