Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding Contact and ToDoList for real this time
  • Loading branch information
msm10008 committed Mar 4, 2016
1 parent edcd4de commit 95c24d1
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Party_APP/src/model/Contact.java
@@ -0,0 +1,14 @@
//Mathew Fox
//CSE 2102
//March 4, 2016

package model;

public class Contact {

public String FirstName;
public String LastName;
public String PhoneNumber;
public String EmailAddress;

}
13 changes: 13 additions & 0 deletions Party_APP/src/model/ToDoList.java
@@ -0,0 +1,13 @@
//Mathew Fox
//CSE 2102
//March 4, 2016

package model;

public class ToDoList {

public String ItemName;
public String ItemDescription;
public Boolean Completed;

}

0 comments on commit 95c24d1

Please sign in to comment.