package com.dacrt.SBIABackend.dto;

public class oAuth2LoginDto {

	private String code;
	private String state;
	
	public oAuth2LoginDto(String code, String state) {
		super();
		this.code = code;
		this.state = state;
	}

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

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}

	
}
