package com.dacrt.SBIABackend.dto;

public class PeriodParResponseDto2 {
	private Integer id;
	
	private String name;

	public PeriodParResponseDto2() {
		super();
	}

	public PeriodParResponseDto2(Integer id, String name) {
		super();
		this.id = id;
		this.name = name;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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