[NF] Zway-Bot hinzugefügt
[NF] Viele kleine Änderungen an Zwaylib zur Verbesserung der Kompatibilität
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user