Files
HyperbolicDownloader/HyperbolicDownloaderApi/Networking/BroadcastRecivedEventArgs.cs
T
2023-12-14 19:00:47 +01:00

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