mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 02:14:56 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public interface IOccupancyStatusProvider
|
|
{
|
|
BoolFeedback RoomIsOccupiedFeedback { get; }
|
|
}
|
|
} |