mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
Updated interface name case to have capital I prefix for consistency
This commit is contained in:
parent
a8e5e2f763
commit
412dca0459
4 changed files with 3 additions and 15 deletions
|
|
@ -6,7 +6,7 @@ using Crestron.SimplSharp;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.Codec
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
{
|
{
|
||||||
public interface iHasCallFavorites
|
public interface IHasCallFavorites
|
||||||
{
|
{
|
||||||
CodecCallFavorites CallFavorites { get; }
|
CodecCallFavorites CallFavorites { get; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,16 +24,4 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
|
|
||||||
BoolFeedback IncomingCallFeedback { get; }
|
BoolFeedback IncomingCallFeedback { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public interface IHasDirectory
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public interface IHasObtp
|
|
||||||
{
|
|
||||||
|
|
||||||
// Upcoming Meeting warning event
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -9,7 +9,7 @@ using PepperDash.Essentials.Devices.Common.VideoCodec;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.Codec
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
{
|
{
|
||||||
public interface iHasDirectory
|
public interface IHasDirectory
|
||||||
{
|
{
|
||||||
event EventHandler<DirectoryEventArgs> DirectoryResultReturned;
|
event EventHandler<DirectoryEventArgs> DirectoryResultReturned;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
{
|
{
|
||||||
enum eCommandType { SessionStart, SessionEnd, Command, GetStatus, GetConfiguration };
|
enum eCommandType { SessionStart, SessionEnd, Command, GetStatus, GetConfiguration };
|
||||||
|
|
||||||
public class CiscoCodec : VideoCodecBase, IHasCallHistory, iHasCallFavorites, iHasDirectory, IHasScheduleAwareness
|
public class CiscoCodec : VideoCodecBase, IHasCallHistory, IHasCallFavorites, IHasDirectory, IHasScheduleAwareness
|
||||||
{
|
{
|
||||||
public event EventHandler<EventArgs> UpcomingMeetingWarning;
|
public event EventHandler<EventArgs> UpcomingMeetingWarning;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue