LANCommander/LANCommander.SDK/Models/BeaconMessage.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

8 lines
No EOL
183 B
C#

namespace LANCommander.SDK.Models;
public class BeaconMessage
{
public string Address { get; set; }
public string Name { get; set; }
public string Version { get; set; }
}