1import 'package:equatable/equatable.dart';
3class SignInRequestEntity
extends Equatable {
8 required this.password,
12 List<Object?>
get props => [email, password];
const SignInRequestEntity({ required this.email, required this.password, })
String get(String locale)
abstract class UseCase< Type, Params > props