I am making some WCF services, and some of the consumers are Prism Apps.
To avoid having to copy the DataContract class to a client side class, they would like to have the contracts support INotifyPropertyChanged.
However, I have some clients that are MVC3 clients.
Is adding INotifyPropertyChanged support to the data contracts going to mess them up?
Also, I am planning to have my DataContracts also be my POCO objects from my Entity Framework db connection. Will INotifyPropertyChanged mess that up?
Or is INotifyPropertyChanged just a WPF thing and the other apps won't care about it?