package com.dacrt.SBIABackend.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SectionValueDto {

	private String label;
    private Integer value;
    private String color;
    
	public SectionValueDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public SectionValueDto(String label, Integer value, String color) {
		super();
		this.label = label;
		this.value = value;
		this.color = color;
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public Integer getValue() {
		return value;
	}

	public void setValue(Integer value) {
		this.value = value;
	}

	public String getColor() {
		return color;
	}

	public void setColor(String color) {
		this.color = color;
	}
    
    
}
