public TwitterAccountViewModel(TwitterAccount account)
 {
     _account = account;
     CompositeDisposable.Add(account.ListenPropertyChanged(e =>
     {
         RaisePropertyChanged(() => ProfileImageUri);
         RaisePropertyChanged(() => ScreenName);
     }));
 }