docs: complete XML documentation for all projects with inheritdoc tags

Co-authored-by: andrew-welker <1765622+andrew-welker@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-07-22 15:53:01 +00:00
parent 260677a37f
commit 7987eb8f9b
485 changed files with 8099 additions and 2490 deletions

View File

@@ -3,9 +3,9 @@ using System.Collections.Generic;
namespace PepperDash.Essentials.Core.Shades
{
/// <summary>
/// Requirements for an object that contains shades
/// </summary>
/// <summary>
/// Defines the contract for IShades
/// </summary>
public interface IShades
{
List<IShadesOpenCloseStop> Shades { get; }
@@ -32,7 +32,7 @@ namespace PepperDash.Essentials.Core.Shades
/// <summary>
/// Requirements for a shade device that provides raising/lowering feedback
/// Defines the contract for IShadesRaiseLowerFeedback
/// </summary>
public interface IShadesRaiseLowerFeedback
{
@@ -59,9 +59,9 @@ namespace PepperDash.Essentials.Core.Shades
void OpenCloseOrStop();
}
/// <summary>
/// Basic feedback for shades/scene stopped
/// </summary>
/// <summary>
/// Defines the contract for IShadesStopFeedback
/// </summary>
public interface IShadesStopFeedback : IShadesOpenCloseStop
{
BoolFeedback IsStoppedFeedback { get; }