Files
Bot-Utils/Bot-Utils/Events/SenmlEvent.cs
T
2019-11-26 11:31:19 +01:00

15 lines
386 B
C#

using System;
namespace BlubbFish.Utils.IoT.Bots.Events {
public class SenmlEvent : ModulEventArgs {
public SenmlEvent() {
}
public SenmlEvent(String topic, String text) {
this.Address = topic;
this.Value = text;
this.Source = "Senml";
}
public override String ToString() => this.Source + ": on " + this.Address + " set " + this.Value;
}
}