15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using BlubbFish.IoT.Zway.Events;
|
|
|
|
namespace BlubbFish.IoT.Zway.Interfaces {
|
|
public delegate void UpdatedValue(Object sender, DeviceUpdateEvent e);
|
|
public interface ICommandClass {
|
|
String Name { get; }
|
|
String Id { get; }
|
|
DateTime LastUpdate { get; }
|
|
Boolean Polling { get; set; }
|
|
|
|
event UpdatedValue Update;
|
|
}
|
|
}
|