using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Essentials.Core { /// /// Requirements for a device that has dialing capabilities /// public interface IHasDialer { // Add requirements for Dialer functionality void Dial(); void EndCall(); BoolFeedback InCallFeedback { get; } } }