Skip to content

Commit

Permalink
create a new remark command
Browse files Browse the repository at this point in the history
  • Loading branch information
Kendrick Ang committed Sep 21, 2019
1 parent 88fc7a6 commit d0f257e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/seedu/address/logic/commands/RemarkCommand.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package seedu.address.logic.commands;

import seedu.address.model.Model;

/**
* Changes the remark of an existing person in the address book.
*/
public class RemarkCommand extends Command {

public static final String COMMAND_WORD = "remark";

@Override
public CommandResult execute(Model model) {
return new CommandResult("Hello from remark");
}
}

0 comments on commit d0f257e

Please sign in to comment.