mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-09 17:54:43 +00:00
16 lines
357 B
C#
16 lines
357 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
|
|
}
|
|
} |