module command.remoteundo.lightoncommand; import command.remoteundo.command; import command.remoteundo.light; class LightOnCommand : Command { Light light; this(Light light) { this.light = light; } void execute() { light.on(); } void undo() { light.off(); } }