package com.dacrt.SBIABackend.dto;

public class FacilithelpdistanceDto {

	private Double qty;
	private Integer type;
	private String name;
	
	public FacilithelpdistanceDto(Double qty, Integer type, String name) {
		super();
		this.qty = qty;
		this.type = type;
		this.name = name;
	}

	public FacilithelpdistanceDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public Double getQty() {
		return qty;
	}

	public void setQty(Double qty) {
		this.qty = qty;
	}

	public Integer getType() {
		return type;
	}

	public void setType(Integer type) {
		this.type = type;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
	
	
	
}
