mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 01:04:56 +00:00
13 lines
264 B
C#
13 lines
264 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Room.Cotija
|
|
{
|
|
public interface IDelayedConfiguration
|
|
{
|
|
event EventHandler<EventArgs> ConfigurationIsReady;
|
|
}
|
|
} |