LANCommander/LANCommander.SDK/VPN/Configurations/ZeroTierConfiguration.cs
Pat Hartl 9ad2ce50e3 Start ZeroTier One integration
Starting the scaffolding of controlling the ZeroTier One Windows service to connect to a network.
2024-03-16 14:03:06 -05:00

12 lines
248 B
C#

using LANCommander.SDK.Enums;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.VPN.Configurations
{
public class ZeroTierConfiguration
{
public string NetworkId { get; set; }
}
}