Skip to content
Snippets Groups Projects
Commit 2c004e31 authored by kd1u18's avatar kd1u18
Browse files

Initial commit :)

parents
Branches
No related tags found
No related merge requests found
import java.util.ArrayList;
public class Group {
int groupID;
ArrayList<User> users;
}
import java.util.ArrayList;
/*
Represents a single User of the app.
*/
public class User {
String userName;
String password;
String screenName;
ArrayList<Group> groups;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment