mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-07 23:40:52 +02:00
Upgrade project to .NET 8
This commit is contained in:
@@ -2,14 +2,8 @@
|
||||
|
||||
namespace HyperbolicDownloaderApi.Networking;
|
||||
|
||||
internal class BroadcastRecivedEventArgs : EventArgs
|
||||
internal class BroadcastRecivedEventArgs(IPEndPoint ipEndPoint, string message) : EventArgs
|
||||
{
|
||||
public BroadcastRecivedEventArgs(IPEndPoint iPEndPoint, string message)
|
||||
{
|
||||
IPEndPoint = iPEndPoint;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
public IPEndPoint IPEndPoint { get; }
|
||||
public string Message { get; }
|
||||
public IPEndPoint IPEndPoint { get; } = ipEndPoint;
|
||||
public string Message { get; } = message;
|
||||
}
|
||||
Reference in New Issue
Block a user