Starting the scaffolding of controlling the ZeroTier One Windows service to connect to a network.
12 lines
187 B
C#
12 lines
187 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LANCommander.SDK.Enums
|
|
{
|
|
public enum VPNStatus
|
|
{
|
|
Disconnected,
|
|
Connected,
|
|
}
|
|
}
|