using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core { /// /// Represents a IsReadyEventArgs /// public class IsReadyEventArgs : EventArgs { /// /// Gets or sets the IsReady /// public bool IsReady { get; set; } public IsReadyEventArgs(bool data) { IsReady = data; } } /// /// Defines the contract for IHasReady /// public interface IHasReady { event EventHandler IsReadyEvent; bool IsReady { get; } } }