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