List<Lpu> mo = doc.Descendants("glpu")
.Select(x => new Lpu
{
reenom = Convert.ToInt32(x.Element("reenom").Value),
name = x.Element("name").Value
})
.ToList();
class Lpu
{
public int reenom { get; set; }
public string name { get; set; }
}
List<Lpu> mo
?