mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-08 23:41:05 +02:00
Improve code structure
- Add separate API project - Add notification system
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Net;
|
||||
|
||||
namespace HyperbolicDownloaderApi.Networking;
|
||||
|
||||
internal class BroadcastRecivedEventArgs : EventArgs
|
||||
{
|
||||
public BroadcastRecivedEventArgs(IPEndPoint iPEndPoint, string message)
|
||||
{
|
||||
IPEndPoint = iPEndPoint;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
public IPEndPoint IPEndPoint { get; }
|
||||
public string Message { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user