All checks were successful
ci/woodpecker/push/build Pipeline was successful
Signed-off-by: Nikolai Rodionov <allanger@posteo.com>
13 lines
306 B
Dart
13 lines
306 B
Dart
import 'package:softplayer_dart_proto/accounts/v1/accounts_v1.pbgrpc.dart';
|
|
|
|
class SignInData {
|
|
final String email;
|
|
final String password;
|
|
|
|
const SignInData({required this.email, required this.password});
|
|
|
|
SignInRequest toProto() {
|
|
return SignInRequest(email: email, password: password);
|
|
}
|
|
}
|