mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 05:44:55 +00:00
27 lines
594 B
C#
27 lines
594 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IHasContentSharing
|
|
/// </summary>
|
|
public interface IHasContentSharing
|
|
{
|
|
BoolFeedback SharingContentIsOnFeedback { get; }
|
|
StringFeedback SharingSourceFeedback { get; }
|
|
|
|
bool AutoShareContentWhileInCall { get; }
|
|
|
|
void StartSharing();
|
|
void StopSharing();
|
|
}
|
|
|
|
} |