diff --git a/src/PepperDash.Essentials.Core/CrestronIO/IHasCresnetBranches.cs b/src/PepperDash.Essentials.Core/CrestronIO/IHasCresnetBranches.cs index b882f50e..449d59f3 100644 --- a/src/PepperDash.Essentials.Core/CrestronIO/IHasCresnetBranches.cs +++ b/src/PepperDash.Essentials.Core/CrestronIO/IHasCresnetBranches.cs @@ -9,18 +9,12 @@ using Crestron.SimplSharpPro.DeviceSupport; namespace PepperDash.Essentials.Core; /// -/// Defines the contract for a class that has Cresnet branches +/// Defines the contract for IHasCresnetBranches /// public interface IHasCresnetBranches { /// - /// Defines the contract for IHasCresnetBranches + /// Collection of Cresnet branches /// - public interface IHasCresnetBranches - { - /// - /// Collection of Cresnet branches - /// - CrestronCollection CresnetBranches { get; } - } -} \ No newline at end of file + CrestronCollection CresnetBranches { get; } +}