using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core.Devices
{
///
/// Base class for all Device APIs
///
public abstract class DeviceApiBase
{
public Dictionary ActionApi { get; protected set; }
public Dictionary FeedbackApi { get; protected set; }
}
}