Object Model - kurtispe/Scrumptious GitHub Wiki
User class is the code representation of users. Users will can be assigned or select a task to work on.
RoleNameEmailTaskID
The Project class is the code representation of a project. A Project is the overall goal to be accomplished. It contains all relevant information users would need to work on a project.
NameList<Sprint>RequirementsDescriptionID
The Sprint class is the code representation of a Sprint. Sprints are periods of time where attempts are made to complete specific tasks.
NameDateRequirementsDescriptionBacklogID
The Backlog class is the code representation of a Backlog. Backlog is a set of tasks. It will contain a log of tasks to complete a sprint.
List<Task>ID
The Task class is the code representation of a Task. A Task is an individual assignment contained in the backlog. to completing a sprint.
NameDescriptionRequirementsBooleanList<Step>UserID
The Step class is the code representation of Steps. Steps are optional increments labeled for any given task.
NameDescriptionBooleanID