mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 09:06:10 +02:00
15 lines
347 B
C#
15 lines
347 B
C#
using System.Net;
|
|
|
|
namespace HyperbolicDowloader.Networking;
|
|
|
|
internal class BroadcastRecivedEventArgs : EventArgs
|
|
{
|
|
public BroadcastRecivedEventArgs(IPEndPoint iPEndPoint, string message)
|
|
{
|
|
IPEndPoint = iPEndPoint;
|
|
Message = message;
|
|
}
|
|
|
|
public IPEndPoint IPEndPoint { get; }
|
|
public string Message { get; }
|
|
} |