Where should I create constants for Label Text, Button Text etc in a WPF MVVM application?
Is the best practice to:-
Creating static properties in ViewModel
Creating an nested class in the Model class and exposing it through a property?
Any other way.
Please advise. I am new to MVVM.