Utils/Bot-Utils/Events/CronEvent.cs

17 lines
342 B
C#
Raw Normal View History

2018-06-07 22:49:54 +02:00
using System;
namespace BlubbFish.Utils.IoT.Bots.Events {
public class CronEvent : ModulEventArgs {
public CronEvent() {
}
public CronEvent(String addr, String prop, String value) {
this.Address = addr;
this.Property = prop;
this.Value = value;
this.Source = "Cronjob";
}
}
}