namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Defines the contract for IHasScheduleAwareness
///
public interface IHasScheduleAwareness
{
///
/// Gets the CodecScheduleAwareness instance
///
CodecScheduleAwareness CodecSchedule { get; }
///
/// Method to initiate getting the schedule from the server
///
void GetSchedule();
}
}