10 lines
199 B
C#
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);
|
|||
|
}
|
|||
|
}
|