mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
18 lines
No EOL
441 B
C#
18 lines
No EOL
441 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
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IHasCresnetBranches
|
|
/// </summary>
|
|
public interface IHasCresnetBranches
|
|
{
|
|
CrestronCollection<CresnetBranch> CresnetBranches { get; }
|
|
}
|
|
} |