chore: move all files to file-scoped namespace

This commit is contained in:
Andrew Welker 2025-07-04 16:02:32 -05:00 committed by Neil Dorin
parent aaa5b0532b
commit 3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions

View file

@ -1,32 +1,22 @@
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

namespace PepperDash.Essentials.Core;
/// <summary>
/// Abstract base class for TriList handler bridges
/// </summary>
public abstract class HandlerBridge
{
/// <summary>
/// Abstract base class for TriList handler bridges
/// Gets or sets the IsAttached
/// </summary>
public abstract class HandlerBridge
{
/// <summary>
/// Gets or sets the IsAttached
/// </summary>
public bool IsAttached { get; protected set; }
public bool IsAttached { get; protected set; }
/// <summary>
/// Attaches the handler to the panel's user objects
/// </summary>
public abstract void AttachToTriListOutputs(bool sendUpdate);
/// <summary>
/// Attaches the handler to the panel's user objects
/// </summary>
public abstract void AttachToTriListOutputs(bool sendUpdate);
/// <summary>
/// Removes the handler from the panel's user objects
/// </summary>
public abstract void DetachFromTriListOutputs();
}
/// <summary>
/// Removes the handler from the panel's user objects
/// </summary>
public abstract void DetachFromTriListOutputs();
}