Files
Essentials/essentials-framework/Essentials Core/PepperDashEssentialsBase/Rooms/iOccupancyStatusProvider.cs
Andrew Welker 6d27faa918 renamed room -> rooms
started on Dual Display room;
2020-11-18 15:14:23 -07:00

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; }
}
}