mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 16:25:01 +00:00
17 lines
401 B
C#
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; }
|
|
}
|
|
} |