using System;
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
{
///
/// Describes a device that provides meeting information (like a ZoomRoom)
///
public interface IHasMeetingInfo
{
///
/// Raised when meeting info changes
///
event EventHandler MeetingInfoChanged;
///
/// Gets the current meeting information
///
MeetingInfo MeetingInfo { get; }
}
}