25 lines
564 B
Dart
25 lines
564 B
Dart
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'reset_password_request.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class ResetPasswordRequest {
|
|
String code;
|
|
String phone;
|
|
String password;
|
|
String passwordConfirmation;
|
|
|
|
ResetPasswordRequest({
|
|
required this.code,
|
|
required this.phone,
|
|
required this.password,
|
|
required this.passwordConfirmation,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() => _$ResetPasswordRequestToJson(this);
|
|
|
|
factory ResetPasswordRequest.fromJson(Map<String, dynamic> json) =>
|
|
_$ResetPasswordRequestFromJson(json);
|
|
}
|