From e9812f7858ad9e1711fa7043f9fa447b3e958518 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 14 Aug 2026 13:16:49 -0600 Subject: [PATCH] refactor: update documentation comments in IHasCresnetBranches interface --- .../CrestronIO/IHasCresnetBranches.cs | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) 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; } +}