ZeroTierOne/attic/windows/WinUI/ISwitchable.cs
2020-01-20 08:46:20 -08:00

13 lines
219 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinUI
{
interface ISwitchable
{
void UtilizeState(object state);
}
}