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

@ -9,18 +9,12 @@ using Crestron.SimplSharpPro.DeviceSupport;
namespace PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core;
/// <summary> /// <summary>
/// Defines the contract for a class that has Cresnet branches /// Defines the contract for IHasCresnetBranches
/// </summary> /// </summary>
public interface IHasCresnetBranches public interface IHasCresnetBranches
{ {
/// <summary> /// <summary>
/// Defines the contract for IHasCresnetBranches /// Collection of Cresnet branches
/// </summary> /// </summary>
public interface IHasCresnetBranches CrestronCollection<CresnetBranch> CresnetBranches { get; }
{
/// <summary>
/// Collection of Cresnet branches
/// </summary>
CrestronCollection<CresnetBranch> CresnetBranches { get; }
}
} }