ln.provider.netwatch/DeviceFlags.cs

20 lines
416 B
C#

// /**
// * File: DeviceFlags.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.provider.netwatch
{
[Flags]
public enum DeviceFlags
{
ROUTER = (1<<0),
TRANSCEIVER = (1<<1),
}
}