mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 13:02:05 +03:00
7de756e3f0
fix Hammock rest error handling
14 lines
299 B
C#
14 lines
299 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MyFriendsAround.WP7.Service
|
|
{
|
|
public class PublishLocationEventArgs: EventArgs
|
|
{
|
|
public bool IsSuccess { get; set; }
|
|
public Exception Error { get; set; }
|
|
}
|
|
}
|