mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 17:24:47 +00:00
30 lines
795 B
C#
30 lines
795 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Describes the ability to start an ad-hoc meeting
|
|
/// </summary>
|
|
public interface IHasStartMeeting
|
|
{
|
|
/// <summary>
|
|
/// The default meeting duration in minutes
|
|
/// </summary>
|
|
uint DefaultMeetingDurationMin { get; }
|
|
|
|
/// <summary>
|
|
/// Start an ad-hoc meeting for the specified duration
|
|
/// </summary>
|
|
/// <param name="duration"></param>
|
|
void StartMeeting(uint duration);
|
|
|
|
/// <summary>
|
|
/// Leaves a meeting without ending it
|
|
/// </summary>
|
|
void LeaveMeeting();
|
|
}
|
|
} |