package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class SectionDto {
	private String label;
	private BigInteger value;
	public SectionDto() {
		super();
	}
	public SectionDto(String label, BigInteger value) {
		super();
		this.label = label;
		this.value = value;
	}
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public BigInteger getValue() {
		return value;
	}
	public void setValue(BigInteger value) {
		this.value = value;
	}
	
}
