mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 13:02:05 +03:00
18 lines
420 B
C#
18 lines
420 B
C#
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;
|
|
}
|
|
}
|
|
}
|