mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 14:55:05 +00:00
24 lines
573 B
C#
24 lines
573 B
C#
using System;
|
|
using Crestron.SimplSharpProInternal;
|
|
|
|
namespace PepperDash.Essentials.Core.CrestronIO.Cards
|
|
{
|
|
public class C3CardControllerBase:CrestronGenericBaseDevice
|
|
{
|
|
private readonly C3Card _card;
|
|
|
|
public C3CardControllerBase(string key, string name, C3Card hardware) : base(key, name, hardware)
|
|
{
|
|
_card = hardware;
|
|
}
|
|
|
|
#region Overrides of Object
|
|
|
|
public override string ToString()
|
|
{
|
|
return String.Format("{0} {1}", Key, _card.ToString());
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |