class OTPResponse {
final String timeStamp;
final String timeDue;
OTPResponse({
required this.timeStamp,
required this.timeDue,
});
}