Skip to content

Instantly share code, notes, and snippets.

@deapsquatter
Last active December 12, 2015 02:48
Show Gist options
  • Save deapsquatter/4701273 to your computer and use it in GitHub Desktop.
Save deapsquatter/4701273 to your computer and use it in GitHub Desktop.
public class DeviceBrowserVM : BaseViewModel
{
public ObservableCollection<Profile> SearchedProfiles
{
get{
return searchedDevices;
}
private set{
searchedDevices = value;
FirePropertyChanged("SearchedProfiles");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment