mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 00:56:09 +02:00
15 lines
351 B
C#
15 lines
351 B
C#
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; }
|
|
} |