All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.estafet.microservices.scrum.lib.data.project.ProjectBurndown Maven / Gradle / Ivy

There is a newer version: 1.0.5-SNAPHOT
Show newest version
package com.estafet.microservices.scrum.lib.data.project;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ProjectBurndown {

	private int id;

	private String title;

	private List sprints = new ArrayList();

	public String getTitle() {
		return title;
	}

	public int getId() {
		return id;
	}

	public List getSprints() {
		return sprints;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy