namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
{
///
/// Describes the ability to start an ad-hoc meeting
///
public interface IHasStartMeeting
{
///
/// The default meeting duration in minutes
///
uint DefaultMeetingDurationMin { get; }
///
/// Start an ad-hoc meeting for the specified duration
///
///
void StartMeeting(uint duration);
///
/// Leaves a meeting without ending it
///
void LeaveMeeting();
}
}