namespace Content.Server.DeviceNetwork
{
///
/// A collection of utilities to help with using device networks
///
public static class DeviceNetworkConstants
{
public enum ConnectionType
{
Private,
Wired,
Wireless
}
///
/// The key for command names
/// E.g. [DeviceNetworkConstants.Command] = "ping"
///
public const string Command = "command";
}
}