TF-1205: rename class
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class FCMTokenDto with EquatableMixin {
|
||||
final String token;
|
||||
final String accountId;
|
||||
|
||||
FCMTokenDto(
|
||||
this.token,
|
||||
this.accountId,
|
||||
);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [
|
||||
token,
|
||||
accountId,
|
||||
];
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class FirebaseDto with EquatableMixin {
|
||||
final String token;
|
||||
|
||||
FirebaseDto(this.token);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [token];
|
||||
}
|
||||
Reference in New Issue
Block a user