using System; namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces { /// /// Represents a MeetingInfoEventArgs /// public class MeetingInfoEventArgs : EventArgs { /// /// Gets or sets the Info /// public MeetingInfo Info { get; private set; } /// /// Initializes a new instance of the class. /// /// The meeting information. public MeetingInfoEventArgs(MeetingInfo info) { Info = info; } } }