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

@@ -0,0 +1,27 @@
using System;
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
{
/// <summary>
/// Represents a MeetingInfoEventArgs
/// </summary>
public class MeetingInfoEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the Info
/// </summary>
public MeetingInfo Info { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="MeetingInfoEventArgs"/> class.
/// </summary>
/// <param name="info">The meeting information.</param>
public MeetingInfoEventArgs(MeetingInfo info)
{
Info = info;
}
}
}