using System.Collections.Generic;
using Newtonsoft.Json;
namespace PepperDash.Essentials.AppServer.Messengers
{
///
/// Represents a DeviceStateMessageBase
///
public class DeviceStateMessageBase : DeviceMessageBase
{
///
/// The interfaces implmented by the device sending the messsage
///
[JsonProperty("interfaces")]
public List Interfaces { get; private set; }
///
/// Sets the interfaces implemented by the device sending the message
///
///
public void SetInterfaces(List interfaces)
{
Interfaces = interfaces;
}
}
}