mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 15:01:45 +03:00
offline images
friends list / select friend distance
This commit is contained in:
@@ -43,7 +43,6 @@ namespace MyFriendsAround.WP7.ViewModel
|
||||
|
||||
|
||||
private string _pinUserName;
|
||||
|
||||
public string PinUserName
|
||||
{
|
||||
get { return _pinUserName; }
|
||||
@@ -59,7 +58,6 @@ namespace MyFriendsAround.WP7.ViewModel
|
||||
|
||||
|
||||
private string _pinImageUrl;
|
||||
|
||||
public string PinImageUrl
|
||||
{
|
||||
get { return _pinImageUrl; }
|
||||
@@ -73,6 +71,36 @@ namespace MyFriendsAround.WP7.ViewModel
|
||||
}
|
||||
}
|
||||
|
||||
private DateTime _pinLastUpdated;
|
||||
public DateTime PinLastUpdated
|
||||
{
|
||||
get { return _pinLastUpdated; }
|
||||
set
|
||||
{
|
||||
if (_pinLastUpdated != value)
|
||||
{
|
||||
_pinLastUpdated = value;
|
||||
OnPropertyChanged("PinLastUpdated");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private double _pinDistance;
|
||||
public double PinDistance
|
||||
{
|
||||
get { return Math.Round(_pinDistance, 2); }
|
||||
set
|
||||
{
|
||||
if (_pinDistance != value)
|
||||
{
|
||||
_pinDistance = value;
|
||||
OnPropertyChanged("PinDistance");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user