refactor: update documentation comments in IHasCresnetBranches interface

This commit is contained in:
Neil Dorin 2026-08-14 13:16:49 -06:00
parent 0d4fd7773e
commit e9812f7858

View file

@ -8,11 +8,6 @@ using Crestron.SimplSharpPro.DeviceSupport;
namespace PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core;
/// <summary>
/// Defines the contract for a class that has Cresnet branches
/// </summary>
public interface IHasCresnetBranches
{
/// <summary> /// <summary>
/// Defines the contract for IHasCresnetBranches /// Defines the contract for IHasCresnetBranches
/// </summary> /// </summary>
@ -23,4 +18,3 @@ public interface IHasCresnetBranches
/// </summary> /// </summary>
CrestronCollection<CresnetBranch> CresnetBranches { get; } CrestronCollection<CresnetBranch> CresnetBranches { get; }
} }
}