ChairModel.cs CampusAppWP8::Model::Departments::ChairModel CampusAppWP8::Model::Departments System::Xml::Serialization usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Xml.Serialization; namespaceCampusAppWP8.Model.Departments { publicclassChairModel:BaseModel { privatestringname_de;//germannameofthechair privatestringurl;//link-urltothechairhomepage privatestringname_en;//englishnameofthechair publicChairModel() { this.name_de=String.Empty; this.name_en=String.Empty; this.url=String.Empty; } publicChairModel(stringname) { this.name_de=name; this.name_en=name; this.url=String.Empty; } [XmlAttribute("name_de")] publicstringName_DE { get{returnthis.name_de;} set { if(value!=this.name_de) { this.name_de=value; NotifyPropertyChanged("chair"); } } } [XmlAttribute("name_en")] publicstringName_EN { get{returnthis.name_en;} set { if(value!=this.name_en) { this.name_en=value; NotifyPropertyChanged("chair"); } } } [XmlAttribute("url")] publicstringUrl { get{returnthis.url;} set { if(value!=this.url) { this.url=value; NotifyPropertyChanged("chair"); } } } } }