mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 02:35:00 +00:00
22 lines
552 B
C#
22 lines
552 B
C#
|
|
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Describes a device that provides meeting information (like a ZoomRoom)
|
|
/// </summary>
|
|
public interface IHasMeetingInfo
|
|
{
|
|
/// <summary>
|
|
/// Raised when meeting info changes
|
|
/// </summary>
|
|
event EventHandler<MeetingInfoEventArgs> MeetingInfoChanged;
|
|
|
|
/// <summary>
|
|
/// Gets the current meeting information
|
|
/// </summary>
|
|
MeetingInfo MeetingInfo { get; }
|
|
}
|
|
} |