renamed room -> rooms

started on Dual Display room;
This commit is contained in:
Andrew Welker
2020-06-30 00:34:24 -06:00
parent 35388ddf66
commit ddb1f254e6
22 changed files with 201 additions and 34 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}