[NF] Zway-Bot hinzugefügt

[NF] Viele kleine Änderungen an Zwaylib zur Verbesserung der Kompatibilität
This commit is contained in:
2017-11-25 11:00:48 +00:00
commit 9fb1782abe
8 changed files with 556 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
using System;
namespace ZwayBot {
public class CronEvent : EventArgs {
public CronEvent() {
}
public CronEvent(String addr, String prop, String value) {
this.Address = addr;
this.Property = prop;
this.Value = value;
}
public String Address { get; }
public String Property { get; }
public String Value { get; }
}
public class OvertakerEvent : EventArgs {
public OvertakerEvent() {
}
public OvertakerEvent(String addr, String prop, String value) {
this.Address = addr;
this.Property = prop;
this.Value = value;
}
public String Address { get; }
public String Property { get; }
public String Value { get; }
}
}