mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-07 16:54:52 +00:00
16 lines
379 B
C#
16 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Core
|
|
{
|
|
/// <summary>
|
|
/// Crestron Control Methods for a comm object
|
|
/// </summary>
|
|
public enum eControlMethod
|
|
{
|
|
None = 0, Com, IpId, IpidTcp, IR, Ssh, Tcpip, Telnet, Cresnet, Cec, Udp, Http, Https, Ws, Wss
|
|
}
|
|
} |