package com.project.whatsappchatbot.DTO;

import java.time.LocalDateTime;

public class OTPDetails {
	private String otp;
	private LocalDateTime timestamp;

	
	public OTPDetails() {
		super();
	}

	public OTPDetails(String otp, LocalDateTime localDateTime) {
		this.otp = otp;
		this.timestamp = localDateTime;
	}

	public String getOtp() {
		return otp;
	}

	public LocalDateTime getTimestamp() {
		return timestamp;
	}

	public void setOtp(String otp) {
		this.otp = otp;
	}

	public void setTimestamp(LocalDateTime timestamp) {
		this.timestamp = timestamp;
	}
}
