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;
/// <summary>
/// Defines the contract for a class that has Cresnet branches
/// Defines the contract for IHasCresnetBranches
/// </summary>
public interface IHasCresnetBranches
{
/// <summary>
/// Defines the contract for IHasCresnetBranches
/// Collection of Cresnet branches
/// </summary>
public interface IHasCresnetBranches
{
/// <summary>
/// Collection of Cresnet branches
/// </summary>
CrestronCollection<CresnetBranch> CresnetBranches { get; }
}
}
CrestronCollection<CresnetBranch> CresnetBranches { get; }
}