Skip to content

Instantly share code, notes, and snippets.

@runceel
Created June 21, 2019 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runceel/7e312c688e0cf2bcf86a210450b84f64 to your computer and use it in GitHub Desktop.
Save runceel/7e312c688e0cf2bcf86a210450b84f64 to your computer and use it in GitHub Desktop.
public class SomeViewModel : BindableBase
{
private string _message;
public string Message
{
get { return _message; }
set { SetProperty(ref _message, value); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment