sharp-chat/SharpChat.Common/Protocol/IServer.cs
2022-08-30 17:05:29 +02:00

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);
}
}