mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 18:54:52 +00:00
24 lines
432 B
C#
24 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro.GeneralIO;
|
|
|
|
namespace PepperDash.Essentials.Core.Room
|
|
{
|
|
public interface IHasOccupancyAwareness
|
|
{
|
|
OccupancyStatus RoomOccupancy { get; }
|
|
|
|
}
|
|
|
|
public class OccupancyStatus
|
|
{
|
|
BoolFeedback RoomIsOccupied { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
} |