sharp-chat/SharpChat.Common/Protocol/IServer.cs

10 lines
199 B
C#

using SharpChat.Events;
using System;
using System.Net;
namespace SharpChat.Protocol {
public interface IServer : IEventHandler, IDisposable {
void Listen(EndPoint endPoint);
}
}