com.estafet.microservices.scrum.lib.data.sprint.SprintBurndownDay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microservices-scrum-data-lib Show documentation
Show all versions of microservices-scrum-data-lib Show documentation
Libaries for Microservices data population for testing
package com.estafet.microservices.scrum.lib.data.sprint;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class SprintBurndownDay {
private Integer dayNo;
private Integer hoursTotal;
private Float idealHours;
private String sprintDay;
public Float getIdealHours() {
return idealHours;
}
public Integer getDayNo() {
return dayNo;
}
public Integer getHoursTotal() {
return hoursTotal;
}
public String getSprintDay() {
return sprintDay;
}
}