package com.dacrt.SBIABackend.dto;

public class RespuestaCantidadDto {
	private Long cnt;

	public RespuestaCantidadDto() {
		super();
	}

	public RespuestaCantidadDto(Long cnt) {
		super();
		this.cnt = cnt;
	}

	public Long getCnt() {
		return cnt;
	}

	public void setCnt(Long cnt) {
		this.cnt = cnt;
	}
}
