Skip to content

Instantly share code, notes, and snippets.

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