view Messaging/Server/Listeners/IListener.cs @ 91:50e944bcea9d

updated solution file for nuget restore
author stevenhollidge <stevenhollidge@hotmail.com>
date Mon, 30 Apr 2012 10:49:09 +0100
parents 7d9de5746f18
children
line wrap: on
line source

namespace Server.Listeners
{
    public interface IListener
    {
        bool IsListening { get; set; }
        void Start();
        void Stop();
    }
}