mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
Updated interface name case to have capital I prefix for consistency
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user