mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
45 lines
876 B
C#
45 lines
876 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(string number);
|
|
void EndCall();
|
|
void AcceptCall();
|
|
void RejectCall();
|
|
|
|
void SendDtmf(string digit);
|
|
|
|
BoolFeedback InCallFeedback { get; }
|
|
BoolFeedback IncomingCallFeedback { get; }
|
|
|
|
|
|
|
|
}
|
|
|
|
public interface IHasCallHistory
|
|
{
|
|
// Add recent calls list
|
|
}
|
|
|
|
public interface IHasDirectory
|
|
{
|
|
|
|
}
|
|
|
|
public interface IHasObtp
|
|
{
|
|
|
|
// Upcoming Meeting warning event
|
|
}
|
|
} |