mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 13:02:05 +03:00
19 lines
416 B
C#
19 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using MyFriendsAround.WP7.Model;
|
|
|
|
namespace MyFriendsAround.WP7.Service
|
|
{
|
|
public class LocationChangedEventArgs: EventArgs
|
|
{
|
|
public Location Location { get; private set; }
|
|
|
|
public LocationChangedEventArgs(Location location)
|
|
{
|
|
Location = location;
|
|
}
|
|
}
|
|
}
|