mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 23:41:07 +02:00
9 lines
266 B
C#
9 lines
266 B
C#
using System.Net;
|
|
|
|
namespace HyperbolicDownloaderApi.Networking;
|
|
|
|
internal class BroadcastRecivedEventArgs(IPEndPoint ipEndPoint, string message) : EventArgs
|
|
{
|
|
public IPEndPoint IPEndPoint { get; } = ipEndPoint;
|
|
public string Message { get; } = message;
|
|
} |