using System; using System.Device.Location; using MahTweets.Mango.Core.Models; namespace MahTweets.Mango.Core { public interface IMicroblogConnection : IDisposable { void Refresh(); bool ReadOnly { get; } void NewStatusUpdate(string text, string conversationId, GeoCoordinate location); void Share(StatusUpdate status); } }