mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 06:44:58 +00:00
23 lines
486 B
C#
23 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Core.Shades
|
|
{
|
|
public class ShadeController : Device, IShades
|
|
{
|
|
public List<ShadeBase> Shades { get; private set; }
|
|
|
|
public ShadeController(string key, string name)
|
|
: base(key, name)
|
|
{
|
|
Shades = new List<ShadeBase>();
|
|
}
|
|
|
|
}
|
|
|
|
} |