Utils/IoT/Events/DataEvent.cs
BlubbFish 29caf6f6f6 [BF] Fixing Senml
[NF] Senml now has a configure option to setup the guid
[NF] Zway-Bot now listen on /exit
[NF] Implment searchpath for Zway-Bot (/etc/zwaybot and %appdata%/zwaybot)
2018-05-07 16:52:24 +00:00

13 lines
373 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlubbFish.Utils.IoT.Events {
public class DataEvent : BackendEvent {
public DataEvent(String data) : base() { }
public DataEvent(String message, String topic, DateTime date) : base(message, topic, date, "Data") { }
}
}