Last active
June 15, 2018 22:14
-
-
Save FraukeN/dfd732da0de488913a4f0f2fecb71783 to your computer and use it in GitHub Desktop.
OverviewVM error handling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private bool _isFaulted; | |
public bool IsFaulted | |
{ | |
get { return _isFaulted; } | |
set { Set(ref _isFaulted, value); } | |
} | |
private string _errorMessage; | |
public string ErrorMessage | |
{ | |
get { return _errorMessage; } | |
set { Set(ref _errorMessage, value); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment