Skip to content

Commit

Permalink
Merge pull request AY2425S1-CS2103T-T12-4#70
Browse files Browse the repository at this point in the history
Add Username class
  • Loading branch information
JJtan2002 authored Oct 15, 2024
2 parents 98a7b71 + b3fd1c8 commit 0de15a2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/seedu/address/logic/commands/UsernameCommand.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package seedu.address.logic.commands;

import seedu.address.model.Model;

/**
* Represents a command to add a username to the specified game of the contact.
*/
public class UsernameCommand extends Command {

@Override
public CommandResult execute(Model model) {
return new CommandResult("This command is supposed to add a username");
}
}

0 comments on commit 0de15a2

Please sign in to comment.