mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 18:04:57 +00:00
17 lines
449 B
C#
17 lines
449 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core.Devices
|
|
{
|
|
/// <summary>
|
|
/// Base class for all Device APIs
|
|
/// </summary>
|
|
public abstract class DeviceApiBase
|
|
{
|
|
public Dictionary<string, Object> ActionApi { get; protected set; }
|
|
public Dictionary<string, Feedback> FeedbackApi { get; protected set; }
|
|
}
|
|
} |