package com.dacrt.SBIABackend.dto;

public class PeriodParResponseDto {
	private String id;
	
	private String name;

	public PeriodParResponseDto() {
		super();
	}

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

	public String getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	
	
}
