LANCommander/LANCommander.SDK/Models/BeaconResponseArgs.cs
Pat Hartl 041a0069ee Add DiscoveryBeacon, DiscoveryProbe, new beacon message
Adds a discovery beacon and probe to the client and removes BeaconService from the server.
2025-04-23 21:23:33 -05:00

9 lines
No EOL
182 B
C#

using System.Net;
namespace LANCommander.SDK.Models;
public class BeaconResponseArgs
{
public IPEndPoint EndPoint { get; set; }
public BeaconMessage Message { get; set; }
}