mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 15:01:45 +03:00
refactor LocationService
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Device.Location;
|
||||
|
||||
namespace MyFriendsAround.WP7.Service
|
||||
{
|
||||
public class LocationStatusEventArgs : EventArgs
|
||||
{
|
||||
public GeoPositionStatus Status { get; private set; }
|
||||
public LocationStatusEventArgs(GeoPositionStatus status)
|
||||
{
|
||||
Status = status;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user