Files
Essentials/Essentials Core/PepperDashEssentialsBase/Devices/IHasSharing.cs

17 lines
401 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
{
BoolFeedback SharingSourceFeedback { get; }
}
}