9 lines
199 B
C#
9 lines
199 B
C#
using SharpChat.Events;
|
|
using System;
|
|
using System.Net;
|
|
|
|
namespace SharpChat.Protocol {
|
|
public interface IServer : IEventHandler, IDisposable {
|
|
void Listen(EndPoint endPoint);
|
|
}
|
|
}
|