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

@@ -4,7 +4,7 @@ using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Interface for any device that has a battery that can be monitored
/// Defines the contract for IHasBatteryStats
/// </summary>
public interface IHasBatteryStats : IKeyName
{
@@ -18,7 +18,7 @@ namespace PepperDash.Essentials.Core
}
/// <summary>
/// Interface for any device that has a battery that can be monitored and the ability to charge and discharge
/// Defines the contract for IHasBatteryCharging
/// </summary>
public interface IHasBatteryCharging : IHasBatteryStats
{
@@ -47,7 +47,7 @@ namespace PepperDash.Essentials.Core
}
/// <summary>
/// Interface for any device that is able to control its power, has a configurable reboot time, and has batteries that can be monitored
/// Defines the contract for IHasPowerCycleWithBattery
/// </summary>
public interface IHasPowerCycleWithBattery : IHasPowerCycle, IHasBatteryStats
{