docs: XML comments for Devices.Common

This commit is contained in:
Andrew Welker 2025-10-09 13:18:36 -05:00
parent a5d409e93a
commit f9d9df9d5c
115 changed files with 5772 additions and 4292 deletions

View file

@ -2,15 +2,25 @@
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{
/// <summary>
/// Defines the contract for IHasSelfviewSize
/// </summary>
/// <summary>
/// Defines the contract for IHasSelfviewSize
/// </summary>
public interface IHasSelfviewSize
{
/// <summary>
/// Gets the SelfviewPipSizeFeedback
/// </summary>
StringFeedback SelfviewPipSizeFeedback { get; }
/// <summary>
/// Sets the selfview size
/// </summary>
/// <param name="size">The new selfview size</param>
void SelfviewPipSizeSet(CodecCommandWithLabel size);
/// <summary>
/// Toggles the selfview size
/// </summary>
void SelfviewPipSizeToggle();
}
}