Suppose I have two ViewModels and both are using same Model class. If one ViewModel changes some property value in Model class, I want to Notify the same to second ViewModel, so that I can show the changes in Views without refreshing it again.
Model<-------->ViewModel 1
^
|------------>ViewModel 2
Please help me, how to implement this (Model<--->ViewModel(s) Two-Way binding) using MVVM pattern? And if there is some other way which is more feasible, will be much thankful.