mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
//using System;
|
|
//using System.Collections.Generic;
|
|
//using System.Linq;
|
|
//using System.Text;
|
|
//using Crestron.SimplSharp;
|
|
//using Crestron.SimplSharpPro;
|
|
//using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
//using PepperDash.Core;
|
|
|
|
|
|
//namespace PepperDash.Essentials.Core
|
|
//{
|
|
// public abstract class DvdDeviceBase : Device, IPresentationSource, IHasCueActionList
|
|
// {
|
|
// public DvdDeviceBase(string key, string name)
|
|
// : base(key, name)
|
|
// {
|
|
// HasPowerOnFeedback = new BoolFeedback(() => false);
|
|
|
|
// }
|
|
|
|
// #region IPresentationSource Members
|
|
|
|
// PresentationSourceType IPresentationSource.Type
|
|
// {
|
|
// get { return PresentationSourceType.Dvd; }
|
|
// }
|
|
|
|
// public string IconName
|
|
// {
|
|
// get
|
|
// {
|
|
// return "DVD";
|
|
// }
|
|
// set { }
|
|
// }
|
|
|
|
// public virtual BoolFeedback HasPowerOnFeedback { get; private set; }
|
|
|
|
// #endregion
|
|
|
|
// #region IFunctionList Members
|
|
|
|
// public abstract List<CueActionPair> CueActionList { get; }
|
|
|
|
// #endregion
|
|
|
|
// }
|
|
//} |