Last active
June 18, 2018 10:25
-
-
Save lubiepomaranczki/910f14b4f59c569df86462a23c6e3361 to your computer and use it in GitHub Desktop.
Medium ObservablePropery
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 string searchText; | |
public string SearchText | |
{ | |
get { return searchText; } | |
set { SetProperty(ref searchText, value); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment