BaseModel.cs CampusAppWP8::Model::BaseModel CampusAppWP8::Model System::ComponentModel //----------------------------------------------------------------------- //<copyrightfile="BaseModel.cs"company="BTU/IIT"> //Companycopyrighttag. //</copyright> //<author>stubbfel</author> //<sience>03.05.2013</sience> //---------------------------------------------------------------------- namespaceCampusAppWP8.Model { usingSystem; usingSystem.ComponentModel; publicclassBaseModel:INotifyPropertyChanged { publiceventPropertyChangedEventHandlerPropertyChanged; publicvoidNotifyPropertyChanged(stringpropertyName) { PropertyChangedEventHandlerhandler=this.PropertyChanged; if(null!=handler) { handler(this,newPropertyChangedEventArgs(propertyName)); } } } }