Starting the scaffolding of controlling the ZeroTier One Windows service to connect to a network.
12 lines
248 B
C#
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; }
|
|
}
|
|
}
|