mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
feat(wip): removing base classes from Essentials.Core
This commit is contained in:
parent
f43559941b
commit
d2e1979d96
16 changed files with 937 additions and 11 deletions
|
|
@ -9,6 +9,7 @@ using PepperDash.Core;
|
|||
using PepperDash.Essentials.Core;
|
||||
using PepperDash.Essentials.Core.Config;
|
||||
using PepperDash.Essentials.Core.Fusion;
|
||||
using PepperDash.Essentials.Devices.Common.Sources;
|
||||
|
||||
namespace PepperDash.Essentials.Fusion
|
||||
{
|
||||
|
|
@ -212,7 +213,7 @@ namespace PepperDash.Essentials.Fusion
|
|||
break;
|
||||
}
|
||||
|
||||
var laptops = dict.Where(d => d.Value.SourceDevice is Core.Devices.Laptop);
|
||||
var laptops = dict.Where(d => d.Value.SourceDevice is Laptop);
|
||||
i = 1;
|
||||
foreach (var kvp in laptops)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,8 +12,11 @@ using PepperDash.Essentials.Core;
|
|||
using PepperDash.Essentials.Core.Config;
|
||||
using PepperDash.Essentials.Core.SmartObjects;
|
||||
using PepperDash.Essentials.Core.Touchpanels.Keyboards;
|
||||
using PepperDash.Essentials.Devices.Common.Displays;
|
||||
using PepperDash.Essentials.Devices.Displays;
|
||||
using PepperDash.Essentials.Room.Config;
|
||||
using DisplayBase = PepperDash.Essentials.Core.DisplayBase;
|
||||
using TwoWayDisplayBase = PepperDash.Essentials.Core.TwoWayDisplayBase;
|
||||
|
||||
namespace PepperDash.Essentials.UIDrivers
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue