Files
workavia-mail-front/model/lib/fcm/fcm_token_dto.dart
T
2022-12-02 16:13:47 +07:00

18 lines
266 B
Dart

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,
];
}