Skip to content

Instantly share code, notes, and snippets.

@adamped
Created November 12, 2015 05:20
Show Gist options
  • Save adamped/b7dd677a67114a0adf99 to your computer and use it in GitHub Desktop.
Save adamped/b7dd677a67114a0adf99 to your computer and use it in GitHub Desktop.
private LoginModel _model = null;
public LoginModel Model
{
get
{
return _model;
}
set
{
if (value != _model)
{
_model = value;
RaisePropertyChanged(() => Model);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment