using System; namespace MahTweets.Core.Interfaces { public interface IStatusSubscriber : ISubscriber { bool HasSettings { get; } bool Hidden { get; } void Subscribe(IObservable source, IObserver target); void Unsubscribe(); void ShowSettings(Action completed); string Tag { get; } } }