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
13 lines (9 sloc) 180 Bytes
//Mathew Fox
//CSE 2102
//March 4, 2016
package model;
public class ToDoList {
public String ItemName;
public String ItemDescription;
public Boolean Completed;
}