mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 00:05:05 +00:00
22 lines
469 B
C#
22 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Requirements for a device that has dialing capabilities
|
|
/// </summary>
|
|
public interface IHasDialer
|
|
{
|
|
// Add requirements for Dialer functionality
|
|
|
|
void Dial();
|
|
void EndCall();
|
|
|
|
BoolFeedback InCallFeedback { get; }
|
|
|
|
}
|
|
} |