Files
Essentials/Essentials Core/PepperDashEssentialsBase/Devices/IHasSharing.cs
2017-09-12 14:04:20 -06:00

19 lines
462 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Indicates that the device has the capability to share sources outside the local room
/// </summary>
public interface IHasSharing
{
void StartSharing();
void StopSharing();
StringFeedback SharingSourceFeedback { get; }
}
}