mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-22 09:01:43 +03:00
12 lines
207 B
C#
12 lines
207 B
C#
using System.ServiceModel;
|
|
|
|
namespace GpsEmulatorClient
|
|
{
|
|
[ServiceContract]
|
|
interface IGpsEmulatorService
|
|
{
|
|
[OperationContract]
|
|
string GetCurrentPosition();
|
|
}
|
|
}
|