mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 20:04:56 +00:00
21 lines
503 B
C#
21 lines
503 B
C#
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IHasScheduleAwareness
|
|
/// </summary>
|
|
public interface IHasScheduleAwareness
|
|
{
|
|
/// <summary>
|
|
/// Gets the CodecScheduleAwareness instance
|
|
/// </summary>
|
|
CodecScheduleAwareness CodecSchedule { get; }
|
|
|
|
/// <summary>
|
|
/// Method to initiate getting the schedule from the server
|
|
/// </summary>
|
|
void GetSchedule();
|
|
}
|
|
|
|
}
|