Files
Essentials/essentials-framework/Essentials Core/PepperDashEssentialsBase/Rooms/iOccupancyStatusProvider.cs
Andrew Welker ad905a6d04 renamed room -> rooms
started on Dual Display room;
2020-07-08 16:17:20 -06: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; }
}
}