Files
farcasclaudiu 7de756e3f0 Error reporting (via email)
fix Hammock rest error handling
2011-03-29 02:17:13 +03:00

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; }
}
}