mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 11:15:08 +00:00
15 lines
351 B
C#
15 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public interface IHasCresnetBranches
|
|
{
|
|
CrestronCollection<CresnetBranch> CresnetBranches { get; }
|
|
}
|
|
} |