Skip to content
Permalink
95c24d15d3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (10 sloc) 204 Bytes
//Mathew Fox
//CSE 2102
//March 4, 2016
package model;
public class Contact {
public String FirstName;
public String LastName;
public String PhoneNumber;
public String EmailAddress;
}